Releases: iabudiab/ObjectiveRocks
Releases · iabudiab/ObjectiveRocks
ObjectiveRocks 0.2.0
Released on 2015.02.01
- RocksDB Version:
3.9
: facebook/rocksdb@a801c1f
Added
Column Families
implementation- Implementation for
Generic Merge Operators
- Built-In comparator types for
NSString
,NSNumber
, and RocksDB's own native byte-wise comparator - Built-In Key-Value encoders and decoders for
NSString
andNSJSONSerializable
types Write Batch
methods formerge
operations- Prefix-based seek iterations
- Tests
ObjectiveRocks 0.1.0
Released on 2015.12.23
- RocksDB Version:
3.9
: facebook/rocksdb@9cda7cb
First release of ObjectiveRocks featuring basic RocksDB functionality:
- Opening and closing RocksDB instances
- Basic DB options
-
Put
,Get
andDelete
operations -
Read
andWrite
options that are specific to single operations -
Atomic
updates viaWrite Batches
- Key-Value encoders and decoders for converting arbitrary objects to and from
NSData
- Database iteration support
- Database
Snapshots
- Read-only view over the entire DB -
Key Comparators
support - For custom key-ordering in the DB -
Associative Merge Operators
support - Atomic read-modify-write operations