CqlSharp 0.39.0
See the version list below for details.
dotnet add package CqlSharp --version 0.39.0
NuGet\Install-Package CqlSharp -Version 0.39.0
<PackageReference Include="CqlSharp" Version="0.39.0" />
paket add CqlSharp --version 0.39.0
#r "nuget: CqlSharp, 0.39.0"
// Install CqlSharp as a Cake Addin #addin nuget:?package=CqlSharp&version=0.39.0 // Install CqlSharp as a Cake Tool #tool nuget:?package=CqlSharp&version=0.39.0
CqlSharp is a high performance, asynchronous Cassandra CQL binary protocol client implementing the ADO.NET data provider interfaces.
It's main features are:
* The API implements the ADO.NET interfaces. If you are familiar with SqlConnection, SqlCommand, and SqlReader, you should be able to use CqlSharp with no difficulty.
* CqlSharp is an implementation of the (new) CQL Binary Protocol and therefore requires Cassandra 1.2 and up
* CqlSharp supports all the binary protocol v2 features: batching, paging, bound query variables, result schema caching, check-and-set (CAS) statements, and sasl-authentication
* Supports fast mapping of objects to query parameters, or query results to objects. Mapping is tunable by decorating your classes via Table and Column attributes.
* Query tracing, timeouts and cancellation is supported
* The API is predominately [asynchronous](https://msdn.microsoft.com/en-us/library/vstudio/hh191443.aspx), heavily relying on the System.Threading.Tasks namespace. Synchronous alternatives are available for convenience.
* Configuration is done through connection strings. The simultaneous use of multiple Cassandra clusters is supported.
* Extensive logging, including support for custom logger implementations
See https://github.com/reuzel/CqlSharp/wiki/Features for an extensive feature list.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on CqlSharp:
Package | Downloads |
---|---|
CqlSharp.Linq
CqlSharp.Linq contains a Linq-to-Cql provider for use with the Apache Cassandra database. Main features are: * Translation of Linq queries to CQL select statements. * All CQL functions are supported, as well as tokens and the allow filtering clause. * Consistency and Paging query behaviour can be set per query via IQueryable extensions * Linq projections (IQueryable.Select statements) can become arbitrarily complex * Generated mapping of query results to objects is extremely fast, through compiled expressions * Linq queries can be (pre-)compiled for increased performance * Snapshot-based entity change tracking is supported, allowing for easy insert, change and updates of entities * Change tracking can be switched off globally or per query * CqlSharp.Linq provides an EntityFramework like interface CqlSharp is a high performance, asynchronous Cassandra CQL binary protocol client implementing the ADO.NET data provider interfaces. See https://github.com/reuzel/CqlSharp/wiki/Features for an extensive feature list. |
|
CqlSharp.NLog
An NLog logging extension to process CqlSharp logs through the NLog library. CqlSharp is a high performance, asynchronous Cassandra CQL binary protocol client implementing the ADO.NET data provider interfaces. See https://github.com/reuzel/CqlSharp/wiki for details. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.41.1 | 44,505 | 1/20/2015 |
0.41.0 | 3,447 | 11/6/2014 |
0.40.1 | 2,776 | 10/15/2014 |
0.40.0 | 2,462 | 10/12/2014 |
0.39.0 | 2,729 | 9/7/2014 |
0.38.0 | 2,548 | 7/19/2014 |
0.37.0 | 2,889 | 6/9/2014 |
0.36.0 | 3,368 | 4/3/2014 |
0.35.0 | 2,414 | 3/25/2014 |
0.34.0 | 2,619 | 3/16/2014 |
0.33.0 | 2,573 | 3/11/2014 |
0.32.2 | 2,596 | 3/4/2014 |
0.32.1 | 2,412 | 2/23/2014 |
0.32.0 | 2,764 | 2/21/2014 |
0.31.0 | 2,410 | 1/20/2014 |
0.30.2 | 2,380 | 12/11/2013 |
0.30.1 | 2,418 | 11/5/2013 |
0.30.0 | 2,370 | 10/6/2013 |
0.20.1 | 2,396 | 9/24/2013 |
0.20.0 | 2,331 | 9/6/2013 |
0.14.0 | 2,434 | 7/28/2013 |
0.13.0 | 2,730 | 6/5/2013 |
0.12.0 | 2,428 | 5/27/2013 |
0.11.0 | 2,387 | 5/2/2013 |
0.10.0 | 2,422 | 3/21/2013 |
0.9.0 | 2,330 | 3/12/2013 |
0.9.0-alpha | 2,200 | 3/10/2013 |
## Version 0.39.0 - Performance of sync operations
* Many changes to have synchronous API really execute synchronously, it is no longer a sync-over-async wrapper
* Improved exception generation in case of query cancellation or timeout
* Logging cancelled queries
* Fix: Adding LocalOne consistency level
## Version 0.38.0 - Fixes and Improved Aliveness Checking of Cassandra Nodes
* Fixed bug that hampered exponential backoff
* Succesfull connection to a node must be made before it is marked as up again, keeping it out-of-scope of connection strategies until proven up.
* Fixing issue where multiple node UP notifications are received in a short time
* Clearing prepared query ids, forcing queries to be reprepared when node is marked down
* Making sure that at least a single query attempt is done when MaxRetryCount setting is set to 0
* MEF fix: now using correct directories for loading extensions
## Version 0.37.0 - TraceLogger and Fixes on cluster reconfiguration
* Fix crash when nodes are added to a running system (and have no tokens gossiped). CqlSharp now reloads configurations every minute until all tokens are found.
* Fix missing logger binding when using exclusive connection strategy
* Simplified logger classes and added TraceLogger (thanks to justmara)
...
See https://github.com/reuzel/CqlSharp/blob/master/ChangeLog.md for the full changelog.