-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.lisp
56 lines (45 loc) · 1007 Bytes
/
package.lisp
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
;;;; package.lisp
(defpackage #:cl-rocksdb
(:use #:cl #:cffi)
(:export
;; LRU CACHE
#:create-lru-cache
;; BLOCK-BASED OPTIONS
#:create-block-based-options
#:destroy-block-based-options
#:set-block-based-options-block-cache
#:set-block-based-options-cache-index-and-filter-blocks
;; OPTIONS
#:create-options
#:destroy-options
#:increase-parallelism
#:optimize-level-style-compaction
#:set-create-if-missing
#:set-block-based-table-factory-options
#:create-writeoptions
#:destroy-writeoptions
#:create-readoptions
#:destroy-readoptions
;; BASIC
#:open-db
#:close-db
#:cancel-all-background-work
#:put-kv
#:put-kv-str
#:get-kv
#:get-kv-str
;; ITERATOR
#:create-iter
#:destroy-iter
#:move-iter-to-first
#:move-iter-forward
#:move-iter-backward
#:valid-iter-p
#:iter-key
#:iter-key-str
#:iter-value
#:iter-value-str
#:with-open-db
#:with-iter
;; PROPERTY
#:property-value))