rocksdb-jruby 1.0.0.pre1-java → 1.0.0.pre2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/lib/rocks_db/db.rb +8 -0
- data/lib/rocks_db/ext/rocks_db.jar +0 -0
- data/lib/rocks_db/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e42eaee7f5ae38c6491452c5aa43fdee5abfd0a5
|
4
|
+
data.tar.gz: c683b4c8b3ed31cb3c3855fb361cc4cdf834ee67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25689dd7f3f10ada808d62365d0ea4029575e757414ab0dfd534944c90095437692dd23de93eaca9894463bf678a0b1d08b0c84dcb9b5c3b14134a62385d17cb
|
7
|
+
data.tar.gz: bc3446e7a575052b7d5a2e25b6c4ab8fe6df21d934fd8cb0ec49b6769cd871e2dafc0af49657c759b425504b25976e92ec3759ed3e2d341374a890f26447226e
|
data/README.md
CHANGED
data/lib/rocks_db/db.rb
CHANGED
@@ -76,5 +76,13 @@ module RocksDb
|
|
76
76
|
# @yieldparam [String] value a value
|
77
77
|
# @return [Enumerable] an enumerable of the same keys and values as the
|
78
78
|
# call would have yielded if a block was given
|
79
|
+
|
80
|
+
# @!method compact_range(options={})
|
81
|
+
# Compact the whole, or a range of the keyspace
|
82
|
+
#
|
83
|
+
# @param [Hash] options
|
84
|
+
# @option options [String] :from (nil) the start of the range to compact
|
85
|
+
# @option options [String] :to (nil) the end of the range to compact
|
86
|
+
# @return [nil]
|
79
87
|
end
|
80
88
|
end
|
Binary file
|
data/lib/rocks_db/version.rb
CHANGED