forked from iabudiab/ObjectiveRocks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRocksDBBlockBasedTableOptions.h
139 lines (114 loc) · 3.64 KB
/
RocksDBBlockBasedTableOptions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
//
// RocksDBBlockBasedTableOptions.h
// ObjectiveRocks
//
// Created by Iska on 02/01/15.
// Copyright (c) 2015 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "RocksDBCache.h"
#import "RocksDBFilterPolicy.h"
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(char, BlockBasedTableIndexType)
{
/**
@brief A space efficient index block that is optimized for
binary-search-based index.
*/
BlockBasedTableIndexBinarySearch,
/**
@brief The hash index, if enabled, will do the hash lookup when
a prefix extractor is provided.
@see RocksDBPrefixExtractor
*/
BlockBasedTableIndexHashSearch
};
typedef NS_ENUM(char, BlockBasedTableChecksumType) {
BlockBasedTableNoChecksum = 0x0, // not yet supported. Will fail
BlockBasedTableChecksumCRC32c = 0x1,
BlockBasedTableChecksumxxHash = 0x2,
};
@interface RocksDBBlockBasedTableOptions : NSObject
/**
@brief
Indicate to put index/filter blocks to the block cache.
If not specified, each "table reader" object will pre-load index/filter
block during table initialization.
*/
@property (nonatomic, assign) BOOL cacheIndexAndFilterBlocks;
/**
@brief The index type that will be used for this table.
*/
@property (nonatomic, assign) BlockBasedTableIndexType indexType;
/**
@brief
Influence the behavior when kHashSearch is used.
if false, stores a precise prefix to block range mapping
if true, does not store prefix and allows prefix hash collision
(less memory consumption)
*/
@property (nonatomic, assign) BOOL hashIndexAllowCollision;
/**
@brief
Use the specified checksum type. Newly created table files will be
protected with this checksum type. Old table files will still be readable,
even though they have different checksum type.
*/
@property (nonatomic, assign) BlockBasedTableChecksumType checksumType;
/**
@brief
Disable block cache. If this is set to true,
then no block cache should be used, and the block_cache should
point to a nullptr object.
*/
@property (nonatomic, assign) BOOL noBlockCache;
/**
@brief
Use the specified cache for blocks.
If nil, rocksdb will automatically create and use an 8MB internal cache.
@see RocksDBCache
*/
@property (nonatomic, strong, nullable) RocksDBCache *blockCache;
/**
@brief
Use the specified cache for compressed blocks.
@see RocksDBCache
*/
@property (nonatomic, strong, nullable) RocksDBCache *blockCacheCompressed;
/**
@brief
Approximate size of user data packed per block. Note that the
block size specified here corresponds to uncompressed data. The
actual size of the unit read from disk may be smaller if
compression is enabled. This parameter can be changed dynamically.
*/
@property (nonatomic, assign) size_t blockSize;
/**
@brief
This is used to close a block before it reaches the configured
'blockSize'. If the percentage of free space in the current block is less
than this specified number and adding a new record to the block will
exceed the configured block size, then this block will be closed and the
new record will be written to the next block.
*/
@property (nonatomic, assign) int blockSizeDeviation;
/**
@brief
Number of keys between restart points for delta encoding of keys.
This parameter can be changed dynamically.
*/
@property (nonatomic, assign) int blockRestartInterval;
/**
@brief
Use the specified filter policy to reduce disk reads.
@see RocksDBFilterPolicy
*/
@property (nonatomic, strong, nullable) RocksDBFilterPolicy *filterPolicy;
/**
@brief
If true, place whole keys in the filter (not just prefixes).
This must generally be true for gets to be efficient.
*/
@property (nonatomic, assign) BOOL wholeKeyFiltering;
@end
NS_ASSUME_NONNULL_END