NoSQL读书笔记---Cassandra

来源:互联网 发布:火狐量子浏览器 知乎 编辑:程序博客网 时间:2024/06/16 08:53

1. Cassandra新特性:分层压缩

可以通过在创建Column Family时指定compaction_strategy参数为LeveledCompactionStrategy来使用新的分层压缩策略。

对于一个更新操作和删除操作比较多的系统,使用分层压缩是比较合适的。因为这种系统会产生同一份数据的多个版本。但是由于这种压缩会在压缩中进行更多的IO操作,所以如果是一个主要是insert操作的系统,建议不要使用分层压缩方法。

更多细节请参阅:http://blog.nosqlfan.com/html/3258.html

2. Cassandra1.0改进:数据压缩

http://blog.nosqlfan.com/html/3243.html

3. 在NoSQL上构建你的搜索服务  http://blog.nosqlfan.com/html/1191.html

Cassandra : Solandra  https://github.com/tjake/Solandra

Riak  : Riak Search  https://github.com/basho/riak_search

HBase : HSearch http://bizosyshsearch.sourceforge.net/

4. 关于Cassadra的演讲稿:

http://blog.nosqlfan.com/html/3615.html

http://blog.nosqlfan.com/html/2528.html


待续 。。。



原创粉丝点击