https://github.com/ruivieira/java-driver
https://github.com/ruivieira/java-driver
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruivieira/java-driver
- Owner: ruivieira
- License: apache-2.0
- Created: 2013-06-14T10:31:05.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-06-14T10:38:41.000Z (over 12 years ago)
- Last Synced: 2024-12-06T19:37:14.446Z (10 months ago)
- Language: Java
- Size: 320 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
DataStax Java Driver for Apache Cassandra
=========================================A Java client driver for Apache Cassandra. This driver works exclusively with
the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol.- JIRA: https://datastax-oss.atlassian.net/browse/JAVA
- IRC: #datastax-drivers on `irc.freenode.net `_
- DOCS: http://www.datastax.com/doc-source/developer/java-driver
- API: http://www.datastax.com/drivers/java/apidocsThe driver architecture is based on layers. At the bottom lies the driver core.
This core handles everything related to the connections to a Cassandra
cluster (for example, connection pool, discovering new nodes, etc.) and exposes a simple,
relatively low-level API on top of which higher level layer can be built.The driver contains the following modules:
- driver-core: the core layer.
- driver-examples: example applications using the other modules which are
only meant for demonstration purposes.More modules including a simple object mapper will come shortly.
Please refer to the README of each module for more information.