RESTful API for GET

2012-06-12 Thread James Pirz
Dear all, I am trying to query the system, specifically performing a GET for a specific key, through Jmeter (or CURL) and I am wondering what is the best pure RESTful API for the system (with the lowest overhead) that I can use. Thanks, James

Re: RESTful API for GET

2012-06-12 Thread James Pirz
Hi, Thanks for the reply, But can you tell me how do you form your request URLs, I mean does Cassandra support a native RESTful api for talking to the system, and if yes, on which specific port it is listening for the coming requests ? and what does it expect for the format for the URLs ? Thanks

Re: RESTful API for GET

2012-06-12 Thread Tom
Hi James, No, Cassandra doesn't supports a RESTful api. As Tamar points out, you have to supply this functionality yourself specifically for your data model. When designing your RESTful server application: - consider using a RESTful framework (for example: Jersey) - use a cassandra client to

Re: RESTful API for GET

2012-06-12 Thread Sasha Dolgy
https://github.com/hmsonline/virgil Brian O'Neill posted this a while ago ... sits on top of Cassandra to give you the RESTful API you want Another option ... http://code.google.com/p/restish/ Or, you could simply build your own ... On Tue, Jun 12, 2012 at 8:46 AM, Tom fivemile...@gmail.com

Re: RESTful API for GET

2012-06-12 Thread Cyril Auburtin
Ok actually in my query call instead of page=14, I will put page=colName141st, 2012/6/12 Sasha Dolgy sdo...@gmail.com https://github.com/hmsonline/virgil Brian O'Neill posted this a while ago ... sits on top of Cassandra to give you the RESTful API you want Another option ...