Skip to content

Commit 1da878a

Browse files
committed
Update leveldb.md
1 parent f3aebf5 commit 1da878a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

leveldb.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
LevelDB is a key-value store, written by Jeff Dean and Sanjay Ghemawat at Google. What makes it interesting to Node developers is the LevelUp npm pacakage, which allows LevelDB to be included within a Node application.
44

5-
A number of contributors have created npm modules that allow LevelDB to be used as the basis for a graph, a relational or a document store. In addition, LevelUp can be used not just with LevelDB, but with other databases, such as RocksDB.
5+
A number of contributors have created npm modules that allow LevelDB to be used as the basis for a graph, a relational or a document database. In addition, LevelUp can be used not just with LevelDB, but with other databases, such as RocksDB.
66

77
This approach allows us to create a database for an application that meets our needs, while not forcing us to re-write all the database abstraction layer that an external database usually gives us. It means that we can use a single and very fast data store for a number of different use cases. It also allows us to swap out the data store, if we need to.
88

@@ -38,8 +38,9 @@ One key feature that is hard to implement in LevelDB, but is available in forks
3838
+ [a Node.js-style RocksDB wrapper](https://github.com/Level/level-rocksdb)
3939

4040
**Riak**
41-
[Basho clone of LevelDB](https://github.com/basho/leveldb)
42-
[Optimizing LevelDB for Performance and Scale - RICON East 2013](https://youtu.be/vo88IdglU_8)
41+
42+
+ [Basho clone of LevelDB](https://github.com/basho/leveldb)
43+
+ [Optimizing LevelDB for Performance and Scale - RICON East 2013](https://youtu.be/vo88IdglU_8) (video)
4344

4445
**HyperLevelDB**
4546
+ [HyperLevelDB](https://github.com/rescrv/HyperLevelDB)

0 commit comments

Comments
 (0)