How does Voldemort compare to Cassandra?

前端 未结 2 1837
南方客
南方客 2021-01-30 06:37

How does Voldemort compare to Cassandra?

I\'m not talking about size of community and only want to hear from people who have actually used both.

Especially I\'m

2条回答
  •  野的像风
    2021-01-30 07:26

    Some additional comments:

    • Regarding write speed, Cassandra should be faster -- it is designed to be faster to write than read (you can avoid immediate disk hit for writes due to specialized way storage is done)

    But main difference I think is actually not performance but feature set: Voldemort is strictly a key/value store (currently anyway), whereas Cassandra can offer range queries (with order-preserving partitioner), and bit more structure around data (column families etc). Former is an important consideration for design; latter IMO less so, you can always structure BLOB data on client side.

提交回复
热议问题