tags:

views:

175

answers:

3

Is it possible to write client for Cassandra datastore in Go language?

A: 

The most common way to access Cassandra is via the Thrift interface. Thrift has generators for C++, C#, Erlang, Haskell, Java, Objective C/Cocoa, OCaml, Perl, PHP, Python, Ruby, and Squeak. So unfortunately no GO support out of the box. Take a look at http://github.com/anatol/thrift. Dont know anything about the quality

Schildmeijer
A: 

There is currently no library for Cassandra written in Go. Feel free to start one :)

marketer
+8  A: 

I was browsing today for the same thing and didn't find any client.

However I found a repo on GitHub, it appears somebody is working on Thrift generators for Go: http://github.com/anatol/thrift

Mihai A