Changelog History
Page 1
-
v0.11.0 Changes
January 08, 2020๐ Released on 2020.01.08
- ๐ Improve
ColumnFamilyOptions
by @jurmous in PR #19- Add
compactionStyle
setting - Change
maxBytesForLevelMultiplier
to a double to match internal type - Add missing
level0FileNumCompactionTrigger
implementation
- Add
- Expand
WriteOptions
withnoSlowdown
andlowPriority
options by @jurmous in PR #21 - ๐ Expand
RocksDBIterator
withseekForPrev
andstatus
methods by @jurmous in PR #22 - Expand
CompactRangeOptions
by @jurmous in PR #25allowWriteStall
,maxSubcompactions
,targetPathId
,exclusiveManualCompaction
- โ Removed redundant mem-copy in Iterator and improved release semantics in
enumerate
methods by @myeyesareblind in PRs #27 & #28 - ๐ Fix
bottommostLevelCompaction
switch statement by @jurmous in PR #20
- ๐ Improve
-
v0.10.0 Changes
September 29, 2019๐ Released on 2019.09.29
- โก๏ธ Updated to RocksDB
6.2.4
: facebook/[email protected]
- โก๏ธ Updated to RocksDB
-
v0.9.0 Changes
May 24, 2018๐ Released on 2017.05.25
- RocksDB Version:
5.13.1
: facebook/[email protected]
โ Added
CocoaPods integration
- Spec & Scripts by @rob-keepsafe in #9
RocksDB
isClosed
method to check if the database instance is still open.- Added by @rob-keepsafe in #11
โก๏ธ Updated
- Project settings to Xcode9
- โ Tests to Swift4 syntax
- RocksDB Version:
-
v0.8.0 Changes
May 24, 2018๐ Released on 2017.07.13
- RocksDB Version:
5.4.6
: facebook/[email protected]
โก๏ธ Updated
- โก๏ธ Updated Column Family options:
uint32_t memtablePrefixBloomProbes
~>double memtablePrefixBloomSizeRatio
size_t memtablePrefixBloomHugePageTlbSize
~>size_t memtableHugePageTlbSize
- โก๏ธ Updated Statistics tickers and histograms
โ Removed
- โ Removed obsolete DB options:
BOOL disableDataSync
- โ Removed obsolete Column Family options:
int expandedCompactionFactor
int sourceCompactionFactor
int maxGrandparentOverlapFactor
BOOL verifyChecksumsInCompaction
BOOL filterDeletes
uint32_t memtablePrefixBloomBits
uint32_t minPartialMergeOperands
- RocksDB Version:
-
v0.7.0 Changes
February 19, 2017๐ Released on 2017.02.19
- RocksDB Version:
4.6.1
: facebook/[email protected]
โ Added
- Missing nullability annotations and light-weight generics throughout code base
- ๐ New playground content
โก๏ธ Updated
- Project for Xcode 8
- โ Swift tests for Swift 3
- Playground contents and syntax for Swift 3
- ๐ Travis config for iOS 10.2, macOS 10.12
- ๐ Deployment targets to macOS 10.10, iOS 9.0
โ Removed
- โ Removed the deprecated
timeoutHint
option - โ Removed the deprecated
maxMemCompactionLevel
option
๐ฅ Breaking Changes
๐ The built-in encoding/decoding of keys and values via the encoding options is completelty removed from this release. The API is completely
NSData
-based now.- โ Removed built-it Key/Value
Encoders
andDecoders
- The conversions of custom types to/from
NSData
is the responsibility of the caller
- The conversions of custom types to/from
- โ Removed
EncodingOptions
- โ Removed all methods depending on
EncodingOptions
and the built-in key/valueencoding
and all of the their variants:setObject:forKey:
deleteObjectForKey:
objectForKey:
mergeObject:forKey:
mergeOperation:forKey:
- ๐จ Refactored all
Iterator
,Key Comparator
andMerge Operator
methods accordingly - โ Removed
NSNumber
Key-Comparators - 0๏ธโฃ Rename method for setting up default read & write options from
setDefaultReadOptions:andWriteOptions:
tosetDefaultReadOptions:writeOptions:
- The custom Swift equivalent is
setDefault(readOptions:writeOptions:)
- The custom Swift equivalent is
- RocksDB Version:
-
v0.6.1 Changes
June 12, 2016๐ Released on 2016.06.12
- RocksDB Version:
4.6.1
: facebook/[email protected]
โ Removed
- CocoaPods badges from README for now
- Due to the way "pod lib lint" works locally, the pod cannot be validated and pushed to the trunk, although the Pod works just fine when referenced directly in the Podfile, e.g.:
pod "ObjectiveRocks", :git => "https://github.com/iabudiab/ObjectiveRocks.git", :tag => '0.6.0', :submodules => true
- RocksDB Version:
-
v0.6.0 Changes
June 12, 2016๐ Released on 2016.06.12
- RocksDB Version:
4.6.1
: facebook/[email protected]
โ Added
- ๐ Support for opening the database in read-only mode
- ๐ Support for
Write Batch with Index
andWrite Batch Iterator
- ๐ Support for
Range Compaction
operations - Nullability annotations
- Better compatibility with Swift
- ๐ New statistics and counters
- Cocoapods Podspec
- Travis integration
๐ฅ Breaking Changes
- RocksDB initializers were changed to class instead of instance methods
- โ Removed RocksDB methods without error parameter
- Better compatibility with Swift's error-handling model
- Redundancy
- ๐จ Refactored all RocksDB methods so that the error parameter is the last
- Better compatibility with Swift's error-handling model
- โ Removed
Column Family Metadata
from iOS target - ๐จ
RocksDBIteratorKeyRange
is refactored toRocksDBKeyRange
- Key ranges are used not only for iterations but also for compaction jobs
- Empty-range constant is refactored to open-range, since it represents a range containing all the keys
- ๐ ObjectiveRocks builds frameworks now instead of static libraries
- RocksDB Version:
-
v0.5.0 Changes
June 11, 2016๐ Released on 2016.07.30
- RocksDB Version:
3.11
: facebook/[email protected]
โ Added
- ๐ Source code documentation
โ Removed
- โ Removed
+ (instancetype)LRUCacheWithCapacity:numShardsBits:removeScanCountLimit:
RocksDB Cache initializer- No longer available since: facebook/[email protected]
- RocksDB Version:
-
v0.4.0 Changes
June 11, 2016๐ Released on 2015.01.17
- RocksDB Version:
3.9
: facebook/[email protected]
๐ All headers are refactored in this release to provide a pure Objective-C interface for Swift compatibility.
โ Added
- ๐ง Basic support for RocksDB
Env
for configuring priority thread pools - ๐ Support for querying the
Threads Status
- Options for
Background Compactions
andBackground Flushes
- Iterator methods for key-value iteration
- ๐ Support for Column Family Metadata
- โ Swift tests
๐ Fixed
- Typo in method name in Filter Policy class
- Typo in method name to retrieve column families in RocksDB class
๐ Changed
- โก๏ธ Updated
Thread Status
API- Adapted according to the changes introduces in: facebook/[email protected]
- RocksDB Version:
-
v0.3.0 Changes
June 11, 2016๐ Released on 2015.01.05
- RocksDB Version:
3.9
: facebook/[email protected]
๐ This is the first public release of ObjectiveRocks.
โ Added
- ๐ Database backup and backup-info support
- Database
Checkpoints
- ๐ Support for collecting database statistics, histograms and properties
- Column Family options
- ๐ Support for Column Family
memtable rep
factories - ๐ Support for
Block-based
,Plain-Table
andCuckoo-Table
factories - ๐ Support for RocksDB
Cache
- ๐ Support for RocksDB
Filter Policy
- RocksDB Version: