Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
7395d2c
added lmdb (rebased)
ordian Jan 21, 2019
5a458aa
chore: s/col_to_db/column_to_db
ordian Jan 22, 2019
dba84db
env_set_mapsize to 1 terabyte
ordian Jan 22, 2019
0d83239
resolve drop issue
ordian Jan 22, 2019
de599a8
implement db.restore
ordian Jan 23, 2019
cedb731
add unit tests for lmdb
ordian Jan 24, 2019
cb53a7c
introduce DerefWrapper and fix clippy warnings
ordian Jan 24, 2019
f4d293f
use KeyValuePair elsewhere
ordian Jan 24, 2019
18f0810
add comment about rkv
ordian Jan 25, 2019
33f29cd
partial cargo fmt
ordian Jan 25, 2019
034fce9
add targets to log traces
ordian Jan 25, 2019
908b392
add docs + canonicalize_path
ordian Jan 26, 2019
7c01fad
enforce one environment per process per path
ordian Jan 26, 2019
e5fc688
split comment
ordian Jan 26, 2019
f9e431b
experiment with metrics
ordian Feb 15, 2019
b093510
lmdb: use NO_SYNC
ordian Feb 19, 2019
d775f8f
Revert "experiment with metrics"
ordian Feb 20, 2019
c9edfc0
Merge branch 'master' into lmdb
ordian Feb 22, 2019
3dda3c2
add clear method
ordian Feb 28, 2019
c0f8045
wip
ordian Mar 19, 2019
f6b0806
make it compile
ordian Mar 19, 2019
320a8c2
export pub fn new
ordian Mar 19, 2019
5cf3705
remove KeyValueDBHandler, bump version to 0.2
ordian Mar 19, 2019
47b2e6a
refine transaction interface
ordian Mar 22, 2019
1051b35
refine iteration interface
ordian Mar 22, 2019
1dab915
expose IterationHandler
ordian Mar 22, 2019
b9a1d6b
remove RawKeyValueDB trait
ordian Mar 22, 2019
603d4b6
wip
ordian Mar 25, 2019
562d59c
fix MigrationHandler trait
ordian Mar 26, 2019
9ffe6ea
use new kvdb interface for rocksdb
ordian Mar 26, 2019
6f0cec6
Merge branch 'master' into ao-abstract-kvdb-with-cache
ordian Mar 26, 2019
7eac833
rocksdb: fix warnings
ordian Mar 26, 2019
17c03a3
add docs to OpenHandler
ordian Mar 26, 2019
8375d85
Expose the same interface as rocksdb-kvdb previously
ordian Mar 27, 2019
755d93d
simplify iter inherent methods
ordian Mar 27, 2019
9dc175b
remove old test
ordian Mar 27, 2019
dab57cd
fix rocksdb iteration test
ordian Mar 27, 2019
f546405
remove lmdb from this branch, sigh
ordian Mar 27, 2019
4ce9089
Merge branch 'master' into ao-abstract-kvdb-with-cache
ordian Mar 27, 2019
7f8a22a
Merge branch 'master' into ao-abstract-kvdb-with-cache
ordian Apr 4, 2019
05449fd
tabify
ordian Apr 4, 2019
1f34154
Introduce `ChangeColumns` trait for migration.
ordian Apr 15, 2019
c217a62
Update kvdb/src/lib.rs
dvdplm Apr 5, 2019
a66a1aa
fix kvdb-rocksdb test
ordian Apr 15, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions kvdb-memorydb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "kvdb-memorydb"
version = "0.1.0"
version = "0.2.0"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
description = "A key-value in-memory database that implements the `KeyValueDB` trait"
license = "GPL-3.0"

[dependencies]
parking_lot = "0.6"
kvdb = { version = "0.1", path = "../kvdb" }
parking_lot = "0.7"
kvdb = { version = "0.2", path = "../kvdb" }
6 changes: 3 additions & 3 deletions kvdb-rocksdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kvdb-rocksdb"
version = "0.1.4"
version = "0.2.0"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
description = "kvdb implementation backed by rocksDB"
Expand All @@ -10,10 +10,10 @@ license = "GPL-3.0"
elastic-array = "0.10"
fs-swap = "0.2.4"
interleaved-ordered = "0.1.0"
kvdb = { version = "0.1", path = "../kvdb" }
kvdb = { version = "0.2", path = "../kvdb" }
log = "0.4"
num_cpus = "1.0"
parking_lot = "0.6"
parking_lot = "0.7"
regex = "1.0"
parity-rocksdb = "0.5"

Expand Down
Loading