-
Notifications
You must be signed in to change notification settings - Fork 41
/
cassandra-sharp.nuspec
45 lines (39 loc) · 1.91 KB
/
cassandra-sharp.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0"?>
<package>
<metadata>
<id>cassandra-sharp</id>
<version>0.0.0.0</version>
<title>cassandra-sharp - high performance .NET driver for Apache Cassandra</title>
<authors>Pierre Chalamet</authors>
<owners>Pierre Chalamet</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>https://github.com/pchalamet/cassandra-sharp</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<summary>cassandra-sharp is a high performance .NET driver for Apache Cassandra, fully supporting asynchronous operations (using TPL and Rx) and CQL 3 binary protocol.</summary>
<description>cassandra-sharp - high performance .NET driver for Apache Cassandra.
Please note only binary protocol (cql 3) is supported - this requires Apache Cassandra 1.2.
Major features:
* async operations (TPL tasks / Rx subscriptions)
* Rx interface (IObservable / IObserver) for result streaming
* TPL Task (compatible with C# 5 async) for future operations
* Linq friendly
* extensible rowset mapping (poco, property bag, params out of the box)
* blazing fast object marshaler (dynamic gen'ed code)
* robust connection handling (connection recovery supported)
* ability to understand performance issues (client and server side)
* multiple extension points
* timeout support
* command line tool (cqlplus)
* .NET 4.0+ support (Microsoft .NET / Mono)
Release notes: https://raw.github.com/pchalamet/cassandra-sharp/master/CHANGES.txt
For information, bug reports, suggestions or contributions: https://github.com/pchalamet/cassandra-sharp
</description>
<releaseNotes />
<tags>apache cassandra driver net40 net45 mono database nosql tpl rx reactive high performance streaming</tags>
<references />
<dependencies>
<dependency id="cassandra-sharp-interfaces" version="0.0.0" />
<dependency id="cassandra-sharp-core" version="0.0.0" />
</dependencies>
</metadata>
</package>