bbolt
Go 언어를 위한 임베디드 key/value 데이터베이스입니다.
파일 탐색기
최종 버전 다운로드 (.zip)- benchmark-pr.yaml
- benchmark-releases.yaml
- benchmark-template.yaml
- cross-arch-template.yaml
- cross-arch-test.yaml
- failpoint_test.yaml
- gh-workflow-approve.yaml
- lint.yaml
- lint_template.yaml
- robustness_nightly.yaml
- robustness_template.yaml
- robustness_test.yaml
- stale.yaml
- tests-template.yml
- tests_amd64.yaml
- tests_arm64.yaml
- tests_windows.yml
- dependabot.yml
- CHANGELOG-1.3.md
- CHANGELOG-1.4.md
- CHANGELOG-1.5.md
- command_bench.go
- command_bench_test.go
- command_buckets.go
- command_buckets_test.go
- command_check.go
- command_check_test.go
- command_compact.go
- command_compact_test.go
- command_dump.go
- command_dump_test.go
- command_get.go
- command_get_test.go
- command_info.go
- command_info_test.go
- command_inspect.go
- command_inspect_test.go
- command_keys.go
- command_keys_test.go
- command_page.go
- command_page_item.go
- command_page_item_test.go
- command_page_test.go
- command_pages.go
- command_pages_test.go
- command_root.go
- command_stats.go
- command_stats_test.go
- command_surgery.go
- command_surgery_freelist.go
- command_surgery_freelist_test.go
- command_surgery_meta.go
- command_surgery_meta_test.go
- command_surgery_test.go
- command_version.go
- errors.go
- utils.go
- utils_test.go
- main.go
- OWNERS
- README.md
- errors.go
- btesting.go
- bench_test.go
- bolt_386.go
- bolt_amd64.go
- bolt_arm.go
- bolt_arm64.go
- bolt_loong64.go
- bolt_mips64x.go
- bolt_mipsx.go
- bolt_ppc.go
- bolt_ppc64.go
- bolt_ppc64le.go
- bolt_riscv64.go
- bolt_s390x.go
- bucket.go
- inode.go
- meta.go
- page.go
- page_test.go
- types.go
- unsafe.go
- utils.go
- verify.go
- array.go
- array_test.go
- freelist.go
- freelist_test.go
- hashmap.go
- hashmap_test.go
- shared.go
- guts_cli.go
- surgeon.go
- surgeon_test.go
- xray.go
- xray_test.go
- tx_check_test.go
- compare_benchmarks.sh
- fix.sh
- release.sh
- dmflakey.go
- dmflakey_test.go
- dmsetup.go
- loopback.go
- db_failpoint_test.go
- main_test.go
- powerfailure_test.go
- helpers.go
- version.go
- .gitattributes
- .gitignore
- .go-version
- .golangci.yaml
- allocate_test.go
- bolt_aix.go
- bolt_android.go
- bolt_linux.go
- bolt_openbsd.go
- bolt_solaris.go
- bolt_unix.go
- bolt_windows.go
- boltsync_unix.go
- bucket.go
- bucket_test.go
- code-of-conduct.md
- compact.go
- concurrent_test.go
- cursor.go
- cursor_test.go
- db.go
- db_test.go
- db_whitebox_test.go
- doc.go
- errors.go
- go.mod
- go.sum
- LICENSE
- logger.go
- Makefile
- manydbs_test.go
- mlock_unix.go
- mlock_windows.go
- movebucket_test.go
- node.go
- node_test.go
- OWNERS
- quick_test.go
- README.md
- simulation_no_freelist_sync_test.go
- simulation_test.go
- tx.go
- tx_check.go
- tx_check_test.go
- tx_stats_test.go
- tx_test.go
- unix_test.go
- utils_test.go
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/etcd-io/bbolt
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd bbolt
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Go
보통 추천$ go run go.etcd.io/bbolt/cmd/bbolt@latest
따로 빌드하지 않고 바로 Go 프로그램을 실행합니다.
$ go install go.etcd.io/bbolt/cmd/bbolt@latest
이 명령어를 터미널에 그대로 입력해 실행하세요.
빌드가 에러 없이 끝나면 성공입니다. go run . 을 썼다면 터미널 출력을 확인하세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. Make
보통사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Make Linux/macOS는 보통 기본 설치되어 있습니다. Windows는 별도 설치(예: MSYS2, WSL)가 필요합니다.
make
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
에러 없이 끝나면 성공입니다. 생성된 실행 파일을 직접 실행해보세요.
// repository documentation
Was this content helpful?
(0 ratings)
