forked from iabudiab/ObjectiveRocks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRocksDBMemTableRepFactory.h
52 lines (41 loc) · 1.16 KB
/
RocksDBMemTableRepFactory.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
//
// RocksDBMemTableRepFactory.h
// ObjectiveRocks
//
// Created by Iska on 04/01/15.
// Copyright (c) 2015 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
A factory for MemTableRep objects
*/
@interface RocksDBMemTableRepFactory : NSObject
/**
Creates MemTableReps that use a skip list to store keys.
This is the default in RocksDB.
*/
+ (instancetype)skipListRepFacotry;
#if !(defined(ROCKSDB_LITE) && defined(TARGET_OS_IPHONE))
/**
Creates MemTableReps that are backed by an std::vector.
On iteration, the vector is sorted. This is useful for workloads
where iteration is very rare and writes are generally not issued
after reads begin.
*/
+ (instancetype)vectorRepFactory;
/**
Creates MemTableRep that contain a fixed array of buckets, each
pointing to a skiplist.
*/
+ (instancetype)hashSkipListRepFactory;
/**
Creates MemTableRep based on a hash table: it contains a fixed
array of buckets, each pointing to either a linked list or a skip
list if number of entries inside the bucket exceeds a predefined
threshold.
*/
+ (instancetype)hashLinkListRepFactory;
#endif
@end
NS_ASSUME_NONNULL_END