cassandra--standCF--composite

对于cassandra的数据存储结构最主要的就是key-value的结构化存储,cassandra中有两种表的类型,一种是SuperColumnFamily,另一种是StandColumnFamily

今天学习了一下cassandra1.1里面的standCF的compositeName

rowey compositeName1+columnName1value compositeName1+columnName2valuecompositeName1+columnName3value
 compositeName2+columnName1 valuecompositeName2+columnName2valuecompositeName2+columnName3value
 ..................

1、对于compositename+columnname序列化为中间以0为间隔符目的在于


 public Builder add(Term t, Relation.Type op, List<ByteBuffer> variables) throws InvalidRequestException
        {
            if (current >= composite.types.size())
                throw new IllegalStateException("Composite column is already fully constructed");


            AbstractType currentType = composite.types.get(current++);
            ByteBuffer buffer = t.getByteBuffer(currentType, variables);
            ByteBufferUtil.writeWithShortLength(buffer, out);


            /*
             * Given the rules for eoc (end-of-component, see AbstractCompositeType.compare()),
             * We can select:
             *   - = 'a' by using <'a'><0>
             *   - < 'a' by using <'a'><-1>
             *   - <= 'a' by using <'a'><1>
             *   - > 'a' by using <'a'><1>
             *   - >= 'a' by using <'a'><0>
             */
            switch (op)
            {
                case LT:
                    out.write((byte) -1);
                    break;
                case GT:
                case LTE:
                    out.write((byte) 1);
                    break;
                default:
                    out.write((byte) 0);
                    break;
            }
            return this;
        }


以0为间隔的好处在于当rowkey下有数据为A0a,A0b,A0c,A0d的时候,

如果是composite字段=A,则构造的查询范围为name为A0,

如果是composite字段<A,则构造的查询范围为finish=A-1,

如果是composite字段<=A,则构造的查询范围为finish=A1,

如果是composite字段>A,则构造的查询范围为start=A1,

如果是composite字段>=A,则构造的查询范围为start=A0,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值