Source File
options.go
Belonging Package
github.com/dgraph-io/badger/v4/options
/** SPDX-FileCopyrightText: © 2017-2025 Istari Digital, Inc.* SPDX-License-Identifier: Apache-2.0*/package options// ChecksumVerificationMode tells when should DB verify checksum for SSTable blocks.type ChecksumVerificationMode intconst (// NoVerification indicates DB should not verify checksum for SSTable blocks.NoVerification ChecksumVerificationMode = iota// OnTableRead indicates checksum should be verified while opening SSTtable.OnTableRead// OnBlockRead indicates checksum should be verified on every SSTable block read.OnBlockRead// OnTableAndBlockRead indicates checksum should be verified// on SSTable opening and on every block read.OnTableAndBlockRead)// CompressionType specifies how a block should be compressed.type CompressionType uint32const (// None mode indicates that a block is not compressed.None CompressionType = 0// Snappy mode indicates that a block is compressed using Snappy algorithm.Snappy CompressionType = 1// ZSTD mode indicates that a block is compressed using ZSTD algorithm.ZSTD CompressionType = 2)
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |