cassandra-sharp-tools 3.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package cassandra-sharp-tools --version 3.3.0
NuGet\Install-Package cassandra-sharp-tools -Version 3.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="cassandra-sharp-tools" Version="3.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add cassandra-sharp-tools --version 3.3.0
#r "nuget: cassandra-sharp-tools, 3.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install cassandra-sharp-tools as a Cake Addin
#addin nuget:?package=cassandra-sharp-tools&version=3.3.0

// Install cassandra-sharp-tools as a Cake Tool
#tool nuget:?package=cassandra-sharp-tools&version=3.3.0

Tools for cassandra-sharp-interfaces

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.7.0 1,368 7/5/2017
3.6.0 1,415 12/11/2015
3.3.2 1,874 8/9/2013
3.3.1 1,506 7/12/2013
3.3.0 1,328 6/28/2013
3.2.3 1,341 6/8/2013
3.2.2 1,296 5/16/2013
3.2.1 1,267 5/9/2013
3.2.0 1,315 4/26/2013
3.1.4 1,276 3/22/2013
3.1.3 1,250 3/21/2013
3.1.2 1,299 3/13/2013
3.1.1 1,271 3/12/2013
3.1.0 1,265 3/12/2013

- removed obsolete operations (fluent interface is the way to go)
- log connection building error, avoid GC TcpClient if building goes bad
- simplified command builder extensions - decoupled builder and mapper
- fixed (again) 100% cpu when linux hosted server disconnect
- modified instrumentation interface: TracingSession is now no more available - use ICluster::QueryTracingSession
 when required
- fixed unsigned short problem with map (and other serialization chunks requiring a ushort)
- interface (non prepared query with params) is ready for binary protocol v2 (but no implementation)
- fixed asynchronous worker shutdown in connection
- default consistency level (see TransportConfig.DefaultConsistencyLevel)
- log error when recovery fails
- filtrer invalid rpc address (0.0.0.0) in discovery service SystemPeers
- moved fluent operations (WithXXX) to ICqlCommand (breaking change)
- strongly typed ICqlCommand and IPropertyBagCommand to avoid misleading operation calls
- placement key only available on non prepared statement on Execute()
- placement key can be construct with PlacementKey.From()
- IPartitioner is a new interface allowing pluggin custom partitioner (see ClusterConfig.Partitioner)
- MurmurHash3, Random and Null (default) partitioners are available
- fixed utf8 string deserialization
- fixed issue 59 (https://github.com/pchalamet/cassandra-sharp/issues/59) - release of prepared query is now possible
- Prepared queries are now disposable