本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- e_e
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- zhanjia
- lzyfn123
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- mwhgJava
- silverend
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
- johnsmith9th
- jveqi
- java-007
- sunj
最新文章列表
Cassandra在使用中的限制
1:单行的所有数据必须存储在集群中的一台机器上。
2:单Column数据不能超过2GB(其实应该是够用了)。
3:在SuperColumnFamily中,所有对SuperColumn的请求都会反序列化SuperColumn所有的子Column。所以要避免SuperColumn中有大量子Column。因为Cassandra只存在key和Column两级index。
4:不支持对过大Value的读 ...
Insert super column using Cassandra command line
cassandra> connect 10.240.70.60/9160
Connected to: "Test Cluster" on 10.240.70.60/9160
cassandra> help
List of all CLI commands:
? ...
How to insert SuperColumn into Cassandra with Java
These days I am studying Cassandra and want to insert the SuperColumn into Cassandra with hector, which is high level Java API for Cassandra.I can't find an good example about the issue. Tons of folks ...
Cassandra中rowcached对性能的影响
一直对cassandra做测试,但是测试的结果却跟官方提供的写快,读慢的情况相反。一直没找到问题的答案。
最近在做大数据量的测试时才想起了conf/storage-conf.xml中的这个字段rowcached:
~ The optional RowsCached attribute specifies the number of rows
~ whose ent ...
cassandra内部API使用四2010-07-07
/** 根据属性名从绑定中取得属性值.
*
* @param aPropertyName 属性名
* @return 从绑定中取得的属性值
*/
public String getPropertyFromBinding(String aPropertyName)
{
return CacheConfigReader.ge ...
cassandra内部API使用三2010-07-07
/** 根据Key从缓存删除缓存数据.
*
* @param aKeyArea Key
*/
public void remove(String aKeyArea)
{
CassandraClientPool pool = CassandraClientPoolFactory.INSTANCE.get();
// ...
cassandra内部API使用二2010-07-07
/**根据Key和column从缓存读取数据.
* @param aKeyArea Key
* @param aName column
* @return Object 缓存数据
*/
public Object get(String aKeyArea, String aName)
{
Map<String, Ob ...
cassandra的配置文件cacheConfig.xml---2010年7月7日
<?xml version="1.0" encoding="UTF-8" ?>
<cacheConfig>
<!--缓存服务器集群-->
<servers id="cassandraServers">
<list>
<v ...
cassandra外部使用示例二
续一的类:
/**按给定的产品线节点,获取相关产品族列表
* @return List<HashMap>
* @throws Exception
*/
public List<Map<String, Object>> getProductFamilyNodes(String itemId,
String ...
Bytes Array 转化
最近 作一个Cassandra 的项目,需要bytes[]和各种类型的转换,java 干了这么多年,应该是信手拈来,但是我错了,搞了半天才搞出来, 惭愧呀
public static final byte[] bytes(String s) {
try {
return s.getBytes("UTF-8");
} catch (UnsupportedEn ...
缓存cassandra七(缓存操作实现类)续六
/**
* 缓存操作实现类.
*/
@Service("cassCache")
public class CassCache implements ICassCache
{
/** 根据Key从缓存删除缓存数据.
* @param aKeyArea Key
*/
public void remove(String aKeyArea) th ...
缓存cassandra六(缓存操作实现类)续五
/**
* 缓存操作实现类.
*/
@Service("cassCache")
public class CassCache implements ICassCache
{
/**根据Key和column从缓存读取数据.
* @param aKeyArea Key
* @param aName column
* @return Objec ...
最近博客热门TAG
Oracle(49876) MySQL(37268) SQL Server(17623) Access(9329) DB2(4271) Redis(3181) Sybase(2414) 数据挖掘(2098) MongoDB(2014) SQLite(1817) PostgreSQL(1635) HBase(1492) NoSQL(1000) HSQLDB(620) Informix(581) Derby(578) Cassandra(375) PowerBuilder(333) CouchDB(113) TokyoCabinet(87)