"大于" where-condition on timeuuid使用Datastax C#Cassandra Driver

时间:2014-04-02 09:45:07

标签: c# cassandra datastax

如何使用Datastax C#驱动程序对timeuuid数据类型的CQL查询中的“大于”或“小于”where条件?

我在Cassandra有一张表,用于存储按时间戳排序的cookie历史记录作为timeuuid:

CREATE TABLE cookie_history (
    cookie_id text,
    create_date timeuuid,
    item_id text,
    PRIMARY KEY ((cookie_id), create_date)
);

使用C#类映射表以使用Datastax C#Cassandra驱动程序进行查询:

[Table("cookie_history")]
public class CookieHistoryDataEntry
{
    [PartitionKey(1)]
    [Column("cookie_id")]
    public string CookieID;

    [ClusteringKey(1)]
    [Column("create_date")]
    public Guid CreateDate;

    [Column("item_id")]
    public string ItemID;
}

对于给定的cookie,我想要在给定时间戳之后的所有项目。

        var myTimeUuid = new Guid("5812e74d-ba49-11e3-8d27-27303e6a4831");
        var table = session.GetTable<CookieHistoryDataEntry>();
        var query = table.Where(x => x.CookieID == myCookieId
                                  && x.CreateDate > myTimeUuid);

但是这个(x.CreateDate&gt; myTimeUuid)给了我一个编译时错误:

Operator '>' cannot be applied to operands of type 'System.Guid' and 'System.Guid'

4 个答案:

答案 0 :(得分:3)

可以在原始CQL中对timeuuid使用“大于”。因此,一种解决方案是从驱动程序执行原始CQL:

session.Execute(@"select * 
    from cookie_history 
    where cookie_id = 1242a96c-4bd4-8505-1bea-803784f80c18 
    and create_date > 5812e74d-ba49-11e3-8d27-27303e6a4831;");

答案 1 :(得分:3)

如果您使用CompareTo(),则可以使用Linq:

var query = table.Where(x => x.CookieID == myCookieId &&
                        x.CreateDate.CompareTo(myTimeUuid) > 0;

Here's the code that handles the CompareTo.

相关:如果需要比较需要使用Cassandra token()方法的分区键,可以使用CqlToken.Create进行:

var query = table.Where(x => 
    CqlToken.Create(x.PartitionKeyProperty) >= CqlToken.Create(3);

答案 2 :(得分:0)

您是否有理由想要将日期表示为Guid而不是实际日期类型?除了这是我不知道的一些边缘情况之外,没有大于或小于Guid的概念。日期A可能大于日期B,从我见过的所有Guid的不正确的日期来看。

答案 3 :(得分:0)

实际上也可以使用QueryBuilder而不仅仅是原始CQL:

select.where(QueryBuilder.eq('cookie_id', cookie_id).  
  and(QueryBuilder.gt("create_date", 
      QueryBuilder.fcall("maxTimeuuid", 
          QueryBuilder.fcall("unixTimestampOf", 
              QueryBuilder.raw(timeuuid_as_string))));