All Projects â†’ bchavez â†’ Rethinkdb.driver

bchavez / Rethinkdb.driver

Licence: other
🎧 A NoSQL C#/.NET RethinkDB database driver with 100% ReQL API coverage.

Programming Languages

csharp
926 projects

Projects that are alternatives of or similar to Rethinkdb.driver

Ravendb
ACID Document Database
Stars: ✭ 2,870 (+720%)
Mutual labels:  nosql, document-database
NoSQLDataEngineering
NoSQL Data Engineering
Stars: ✭ 25 (-92.86%)
Mutual labels:  nosql, document-database
Nosqlmap
Automated NoSQL database enumeration and web application exploitation tool.
Stars: ✭ 1,928 (+450.86%)
Mutual labels:  hacktoberfest, nosql
Ftserver
Lightweight Embeddable iBoxDB Full Text Search Server for Java
Stars: ✭ 219 (-37.43%)
Mutual labels:  nosql, document-database
fuerte
Low Level C++ Driver for ArangoDB
Stars: ✭ 41 (-88.29%)
Mutual labels:  nosql, driver
Mongodb Quickstart Course
Course demos and handout material for Talk Python's MongoDB Quickstart course
Stars: ✭ 220 (-37.14%)
Mutual labels:  nosql, document-database
Mattermost Redux
Redux for Mattermost
Stars: ✭ 198 (-43.43%)
Mutual labels:  hacktoberfest, driver
Arangodb Java Driver
The official ArangoDB Java driver.
Stars: ✭ 174 (-50.29%)
Mutual labels:  nosql, driver
database
Key-Value/Document store database library with btree and ARTree indexing methods, SSN-MVCC concurrency
Stars: ✭ 67 (-80.86%)
Mutual labels:  nosql, document-database
uptasticsearch
An Elasticsearch client tailored to data science workflows.
Stars: ✭ 47 (-86.57%)
Mutual labels:  nosql, document-database
Azure Cosmos Js
@azure/cosmos has moved to a new repo https://github.com/Azure/azure-sdk-for-js
Stars: ✭ 201 (-42.57%)
Mutual labels:  nosql, document-database
skytable
Skytable is an extremely fast, secure and reliable real-time NoSQL database with automated snapshots and TLS
Stars: ✭ 696 (+98.86%)
Mutual labels:  nosql, document-database
Arangodb Php
PHP ODM for ArangoDB
Stars: ✭ 178 (-49.14%)
Mutual labels:  nosql, driver
Tiedot
A rudimentary implementation of a basic document (NoSQL) database in Go
Stars: ✭ 2,643 (+655.14%)
Mutual labels:  nosql, document-database
Gocql
Package gocql implements a fast and robust Cassandra client for the Go programming language.
Stars: ✭ 2,182 (+523.43%)
Mutual labels:  nosql, driver
Create robot
ROS driver for iRobot Create 1 and 2.
Stars: ✭ 137 (-60.86%)
Mutual labels:  hacktoberfest, driver
Ftserver Cs
Lightweight iBoxDB Full Text Search Server for C#
Stars: ✭ 81 (-76.86%)
Mutual labels:  nosql, document-database
Arangodb
🥑 ArangoDB is a native multi-model database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions.
Stars: ✭ 11,880 (+3294.29%)
Mutual labels:  nosql, document-database
docs
Source code of the ArangoDB online documentation
Stars: ✭ 18 (-94.86%)
Mutual labels:  nosql, document-database
rql-scala
RethinkDB Scala Driver
Stars: ✭ 13 (-96.29%)
Mutual labels:  driver, rethinkdb

Build status

RethinkDb.Driver

Project Description

A RethinkDB database driver written in C# with 100% ReQL API compatibility and completeness.

This driver is based on the official Java Driver. The basic mechanics and architecture of both drivers are the same. Except this C# driver is a bit more cool, stylish and kick-ass. 😎

Standout Features
The Crypto Tip Jar!

Open-Source and Commercial Licensing

This open-source driver is dual-licensed. Please read below about SSL/TLS restrictions.

Commercial License

A commercial license is required if any part of this driver is used to communicate with a RethinkDB (server or proxy) using SSL/TLS encryption. A commercial license is also required if any part of this driver is used to interact with Compose.IO. Commercial licenses are sold by Bit Armory Inc and are available for purchase here. More information about commercial licensing can be found here.

Open-Source License

As long as SSL/TLS is not used when communicating with a RethinkDB (server or proxy), the driver is free to use for commercial and non-commercial applications and is covered under a modified Apache License 2.0.

Getting Help

Commercial Support

Independent commercial support and consulting are available for this driver. To ensure best practices in .NET, proper driver usage, training, and critical bug fixes for the C# driver contact Brian Chavez (twitter, email) for more information.

Community Support

Slack and Discord are the primary means of getting help for free. If your C# related question can't be answered by anyone tag @bchavez in your question.

Download & Install

NuGet Package RethinkDb.Driver

Install-Package RethinkDb.Driver

Supported Runtimes

Windows Linux Mac OS X
.NET Framework v4.5 n/a n/a
.NET Standard All platforms supporting .NET Standard 2.0 or higher.Eg: .NET Core 2.0.
Mono All platforms 4.0.2 SR2 or higher
RethinkDB server 2.3.0 or higher

Documentation

ReGrid File Storage

Driver Development

RethinkDB Discord Help RethinkDB Gitter Help

Quick Examples

public static RethinkDB R = RethinkDB.R;

[Test]
public void can_connect()
{
    var c = R.Connection()
             .Hostname("192.168.0.11")
             .Port(RethinkDBConstants.DefaultPort)
             .Timeout(60)
             .Connect();

    int result = R.Random(1, 9).Add(R.Random(1, 9)).Run<int>(c);
    Console.WriteLine(result);
    result.Should().BeGreaterOrEqualTo(2).And.BeLessThan(18);
}
// Output: 8

[Test]
public void insert_poco_without_id()
{
    var obj = new Foo { Bar = 1, Baz = 2};
    var result = R.Db("mydb").Table("mytable").Insert(obj).Run(conn);
    result.Dump();
}
/*
    //JObject: Insert Response
	{
	  "deleted": 0,
	  "errors": 0,
	  "generated_keys": [
	    "6931c97f-de3d-46d2-b0f9-956af9517a57"
	  ],
	  "inserted": 1,
	  "replaced": 0,
	  "skipped": 0,
	  "unchanged": 0
	}
*/

[Test]
public void insert_an_array_of_pocos()
{
    var list = new[]
        {
            new Foo {id = "a", Baz = 1, Bar = 1},
            new Foo {id = "b", Baz = 2, Bar = 2},
            new Foo {id = "c", Baz = 3, Bar = 3}
        };
    var result = R.Db("mydb").Table("mytable").Insert(list).Run(conn);
    result.Dump();
}
/*
    //JObject Insert Response
    {
      "deleted": 0,
      "errors": 0,
      "inserted": 3,
      "replaced": 0,
      "skipped": 0,
      "unchanged": 0
    }
*/


[Test]
public void get_a_poco()
{
    Foo foo = R.Db("mydb").Table("mytable").Get("abc").Run<Foo>(conn);
    foo.Dump();
}
//Foo Object
/*
    {
      "id": "abc",
      "Bar": 1,
      "Baz": 2
    }
*/

Contributing

If you'd like to contribute, please consider reading some helpful tips before making changes.

Contributors

Created by Brian Chavez (twitter). Originally ported from the Java Driver by Josh Kuhn. Special thanks to the rest of the RethinkDB team (Josh, AtnNn, danielmewes, neumino, VeXocide) for answering ReQL protocol questions. Also, special thanks to Annie Ruygt for the wonderful GitHub banner!

A big thanks to GitHub and all contributors:

Music Wall

🎼 A small collection of videos that helped in the creation of this driver. =)

The Verve Missing Persons Cudi
Kuffdam & Plant NIN Glitch Mob
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].