Live data from Hacker News

LevelDB: a fast and lightweight key/value database library

code.google.com

1–10 of 82 posts

Re: LevelDB: a fast and lightweight key/value database library

#7

Sounds like a possible redis or memcached replacement. A performance comparision with memcached would be interesting.

replacement is a strong word when you consider that you are talking about:

get/put/delete vs http://redis.io/commands

Re: LevelDB: a fast and lightweight key/value database library

#8
post #6

Anybody know what hardware those benchmarks were on? Is it actually durable? They mention problems with writeback caching, but are they at least durable from the OS perspective? How well does it scale?

it says so on the page: CPU: 4 x Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz

Safe to assume the data fit into memory..whatever amount there was.

Re: LevelDB: a fast and lightweight key/value database library

#9
post #7

Sounds like a possible redis or memcached replacement. A performance comparision with memcached would be interesting.

replacement is a strong word when you consider that you are talking about: get/put/delete vs http://redis.io/commands

sure, dependes of course if you're using redis only for a simple key value store.

Re: LevelDB: a fast and lightweight key/value database library

#10
Note that this is not a database server, like Redis or Memcached. This is a database library, more along the lines of sqlite. In particular: "There is no client-server support builtin to the library. An application that needs such support will have to wrap their own server around the library" and only one process can access a database a time.
Post reply on HN