Documentation

Go .NET

Description

RavenDB is an open-source NoSQL database software designed to help businesses streamline multi-document ACID transactions and facilitate extract, transform, and load (ETL) operations.

Examples

Dependency:
go get github.com/testcontainers/testcontainers-go/modules/ravendb
Usage:
ravendbContainer, err := ravendb.Run(context.Background(), "ravendb/ravendb:6.0-ubuntu-latest")
Dependency:
dotnet add package Testcontainers.RavenDb
Usage:
var ravenDbContainer = new RavenDbBuilder("ravendb/ravendb:5.4-ubuntu-latest")
  .Build();
await ravenDbContainer.StartAsync();