Return-Path: Delivered-To: apmail-cassandra-user-archive@www.apache.org Received: (qmail 78468 invoked from network); 15 Apr 2010 11:06:25 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 15 Apr 2010 11:06:25 -0000 Received: (qmail 98935 invoked by uid 500); 15 Apr 2010 11:06:24 -0000 Delivered-To: apmail-cassandra-user-archive@cassandra.apache.org Received: (qmail 98883 invoked by uid 500); 15 Apr 2010 11:06:22 -0000 Mailing-List: contact user-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@cassandra.apache.org Delivered-To: mailing list user@cassandra.apache.org Received: (qmail 98872 invoked by uid 99); 15 Apr 2010 11:06:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Apr 2010 11:06:22 +0000 X-ASF-Spam-Status: No, hits=-0.4 required=10.0 tests=AWL,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of gdusbabek@gmail.com designates 209.85.211.195 as permitted sender) Received: from [209.85.211.195] (HELO mail-yw0-f195.google.com) (209.85.211.195) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Apr 2010 11:06:16 +0000 Received: by ywh33 with SMTP id 33so1082760ywh.11 for ; Thu, 15 Apr 2010 04:05:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:reply-to:in-reply-to :references:date:received:message-id:subject:from:to:content-type :content-transfer-encoding; bh=+g/bq2EuOZmEprqTpv/K3Ew1QBwrXA335jN/jO56yNA=; b=DGrUrN9eIO9GVuEfDs+jYRQn3HFUNnrt8ihMc3gtmzY/XSiYatfvKi5tzBmYmW/woc xUa8ZsAspvK7rZhyr0c6WpazvA12hsRtQw3xMol1bnEwpSYCGpgRzdvri2fGcQYVw9+V YRws6w8uGCgvzmtjIzXiBJznF5JL3FFSY0ZYA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:content-type:content-transfer-encoding; b=wUb5Nre9BqenN7UIgfCfQPtB3f/fLzSgvq506u11UT2v2ia/1IYZBJ3LPgMLLadIj2 uIndJoQ1ZaNg7I2HA3GMr3KAlcmAQmq2uWX/FY+86ygeBQWUUNBr/nIUk/zcWdiNdSrt 6LWswYCZOg0mQ6t+QM+xikeZvcn6mB2xoYM8A= MIME-Version: 1.0 Received: by 10.151.45.15 with HTTP; Thu, 15 Apr 2010 04:05:55 -0700 (PDT) Reply-To: gdusbabek@gmail.com In-Reply-To: References: Date: Thu, 15 Apr 2010 06:05:55 -0500 Received: by 10.150.214.17 with SMTP id m17mr251324ybg.74.1271329555307; Thu, 15 Apr 2010 04:05:55 -0700 (PDT) Message-ID: Subject: Re: Row key: string or binary (byte[])? From: Gary Dusbabek To: user@cassandra.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable 2010/4/15 Roland H=E4nel : > Is there any effort ongoing to make the row key a binary (byte[]) instead= of > a string? Yes. It went into trunk last night. Please see https://issues.apache.org/jira/browse/CASSANDRA-767. Gary. > In the current cassandra.thrift file (0.6.0), I find: > > const string VERSION =3D "2.1.0" > [...] > struct KeySlice { > =A0=A0=A0 1: required string key, > =A0=A0=A0 2: required list columns, > } > > while on the current (?) SVN > https://svn.apache.org/repos/asf/cassandra/trunk/interface/cassandra.thri= ft > it reads: > > const string VERSION =3D "4.0.0" > [...] > struct KeySlice { > 1: required binary key, > 2: required list columns, > } > > Thanks for enlightening me. :-) > > Greetings, > Roland > >