| CARVIEW |
managedfusion / fluentcassandra
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sun Apr 11 13:04:49 -0700 2010 | basic column_family is working in sandbox [managedfusion] |
| |
FluentCassandra.Sandbox/ | Mon Apr 26 23:32:15 -0700 2010 | have a new outlook on how columns should be str... [managedfusion] |
| |
FluentCassandra.Test/ | Wed May 05 20:05:18 -0700 2010 | all tests passing for get_slice [managedfusion] |
| |
FluentCassandra.sln | Wed Apr 28 07:25:04 -0700 2010 | added tests to make sure everything works corre... [managedfusion] |
| |
FluentCassandra.vsmdi | Wed Apr 28 07:25:04 -0700 2010 | added tests to make sure everything works corre... [managedfusion] |
| |
FluentCassandra/ | Wed May 05 20:05:18 -0700 2010 | all tests passing for get_slice [managedfusion] |
| |
Local.testsettings | Wed Apr 28 07:25:04 -0700 2010 | added tests to make sure everything works corre... [managedfusion] |
| |
README.mkd | Sat Apr 10 18:36:01 -0700 2010 | update of structure [managedfusion] |
| |
TraceAndTestImpact.testsettings | Wed Apr 28 07:25:04 -0700 2010 | added tests to make sure everything works corre... [managedfusion] |
FluentCassandra
FluentCassandra is a .NET library for accessing Cassandra, which wraps the THrift client library and provides a more fluent POCO interface for accessing and querying the objects in Cassandra.
Installing Cassandra
Taken from the "Cassandra Jump Start For Windows" by Nick Berardi: https://www.coderjournal.com/2010/03/cassandra-jump-start-for-the-windows-developer/
- Download Cassandra from https://cassandra.apache.org/
- Extract Cassandra to a directory of your choice (I used c:\development\cassandra)
Set the following environment variables
JAVA_HOME (To the directory where you install the JRE, this should not be the bin directory) CASSANDRA_HOME (To the directory you extracted the files to in step 1)Modify your Cassandra config file as you like and don't forget to update the directory locations from a UNIX like path to something on your windows directory (in my example the config file is located at c:\development\cassandra\conf\storage-conf.xml)
Open cmd and run the cassandra.bat file (in my example the batch file is located at c:\development\cassandra\bin\cassandra.bat)
cd c:\development\cassandra\bin\ .\cassandra.batYou can verify that Cassandra is running, by trying to connect to the server. To do this open a new cmd and run the cassandra-cli.bat file from the bin directory.
cd c:\development\cassandra\bin\ .\cassandra-cli.bat connect localhost/9160

