You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+108-6Lines changed: 108 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,10 @@ ObjectiveRocks provides an easy interface to RocksDB and an Objective-C friendly
10
10
11
11
If you are interested in the internals of RocksDB, please refer to the [RocksDB Wiki](https://github.com/facebook/rocksdb/wiki).
12
12
13
+
## Swift
14
+
15
+
ObjectiveRocks has a pure Objective-C interface and can be used in Swift projects. Additionally, all ObjectiveRocks tests are also ported to Swift. You can check the `Tests` targets and source code which also contain bridging headers for OSX and iOS ObjectiveRocks implementations.
16
+
13
17
## The Minimum You Need to Know
14
18
15
19
* Keys and values are byte arrays
@@ -45,6 +49,7 @@ These features are only available in OSX:
45
49
* Database Backups
46
50
* Database Statistics
47
51
* Database Properties
52
+
* Thread Status
48
53
49
54
## Installation
50
55
@@ -355,29 +360,107 @@ or use one of the provided enumeration-blocks:
`RocksDBIterator` supports iterating inside a key-prefix by providing a `RocksDBPrefixExtractor`. One such extractor is built-in and it extracts a fixed-length prefix for each key:
0 commit comments