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
tree a1a5befea9a96fb73c65
parent 863c863498d8709144b9 parent a9bd442467c21defd912
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Sun Apr 11 13:04:49 -0700 2010 | basic column_family is working in sandbox [managedfusion] |
![]() |
FluentCassandra.Sandbox/ | Fri May 14 11:53:03 -0700 2010 | fixed a bug dealing with mutations [managedfusion] |
![]() |
FluentCassandra.Test/ | Wed May 19 16:09:00 -0700 2010 | Merge branch 'linq-support' [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 19 16:09:00 -0700 2010 | Merge branch 'linq-support' [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.bat
You 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