Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SQLStreamStore/SQLStreamStore
Stream Store library targeting RDBMS based implementations for .NET
https://github.com/SQLStreamStore/SQLStreamStore
c-sharp cqrs dotnet event-sourcing event-store postgresql sql-server streams
Last synced: 3 months ago
JSON representation
Stream Store library targeting RDBMS based implementations for .NET
- Host: GitHub
- URL: https://github.com/SQLStreamStore/SQLStreamStore
- Owner: SQLStreamStore
- License: mit
- Archived: true
- Created: 2015-03-08T19:34:55.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-07-30T14:43:35.000Z (5 months ago)
- Last Synced: 2024-10-06T13:19:33.638Z (3 months ago)
- Topics: c-sharp, cqrs, dotnet, event-sourcing, event-store, postgresql, sql-server, streams
- Language: C#
- Homepage:
- Size: 5.34 MB
- Stars: 467
- Watchers: 31
- Forks: 124
- Open Issues: 57
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-dotnet-core - SQLStreamStore - Stream Store library targeting SQL based implementations for .NET. (Frameworks, Libraries and Tools / ORM)
- awesome-dotnet-core - SQLStreamStore - 针对基于SQL的.NET实现的Stream Store库。 (框架, 库和工具 / 对象关系映射ORM)
- fucking-awesome-dotnet-core - SQLStreamStore - Stream Store library targeting SQL based implementations for .NET. (Frameworks, Libraries and Tools / ORM)
- awesome-dotnet-core - SQLStreamStore - Stream Store library targeting SQL based implementations for .NET. (Frameworks, Libraries and Tools / ORM)
README
# SQL Stream Store ![CI](https://github.com/SQLStreamStore/SQLStreamStore/workflows/CI/badge.svg) [![release](https://img.shields.io/github/release/SQLStreamStore/SQLStreamStore.svg)](https://github.com/SQLStreamStore/SQLStreamStore/releases) [![license](https://img.shields.io/github/license/SQLStreamStore/SQLStreamStore.svg)](LICENSE) ![code size](https://img.shields.io/github/languages/code-size/SQLStreamStore/SQLStreamStore.svg) [![docs status](https://img.shields.io/readthedocs/sqlstreamstore.svg?logo=readthedocs&style=popout)](https://sqlstreamstore.readthedocs.io) [](https://t.co/MRxpx0rLH2)
:warning: These libraries are no longer actively maintained.
A stream store library for .NET that specifically targets SQL based implementations. Primarily used to implement Event Sourced applications.
| Package | Install |
| --- | --- |
| [SqlStreamStore](https://www.nuget.org/packages/SqlStreamStore) (includes in-memory version for behaviour testing) | [![NuGet](https://img.shields.io/nuget/v/SqlStreamStore.svg?logo=nuget)](https://www.nuget.org/packages/SqlStreamStore) |
| [MS SQL Server](https://www.nuget.org/packages/SqlStreamStore.MsSql) / Azure SQL Database | [![NuGet](https://img.shields.io/nuget/v/SqlStreamStore.svg?logo=nuget)](https://www.nuget.org/packages/SqlStreamStore.MsSql) |
| [PostgreSQL](https://www.nuget.org/packages/SqlStreamStore.Postgres) / AWS Aurora | [![NuGet](https://img.shields.io/nuget/vpre/SqlStreamStore.Postgres.svg?logo=nuget)](https://www.nuget.org/packages/SqlStreamStore.Postgres) |
| [MySQL](https://www.nuget.org/packages/SqlStreamStore.MySql) / AWS Aurora | [![NuGet](https://img.shields.io/nuget/vpre/SqlStreamStore.MySql.svg?logo=nuget)](https://www.nuget.org/packages/SqlStreamStore.MySql) |
| Sqlite | [_up for grabs_](https://github.com/SQLStreamStore/SqlStreamStore/issues/28) |
| HTTP Wrapper API | On CI Feed |
| [Schema Creation Script Tool](https://www.fuget.org/packages/SqlStreamStore.SchemaCreationScriptTool) | [![NuGet](https://img.shields.io/nuget/v/SqlStreamStore.SchemaCreationScriptTool.svg?logo=nuget)](https://www.nuget.org/packages/SqlStreamStore.SchemaCreationScriptTool) |CI Packages available [on Feedz](https://f.feedz.io/logicality/streamstore-ci/nuget/index.json).
# Design considerations:
- Designed to only ever support RDMBS/SQL implementations.
- Subscriptions are eventually consistent.
- API is influenced by (but not compatible with) [EventStore](https://eventstore.org/).
- Async only.
- JSON only event and metadata payloads (usually just a `string` / `varchar` / etc).
- No support for `System.Transaction`, enforcing the concept of the stream as the consistency and transaction boundary.# Building
Building requires Docker. Solution and tests are run on a linux container with .NET Core leveraging SQL Server, Postgres and MySQL as sibling containers.
- Windows, run `.\build.cmd`
- Linux, run `./build.sh`Note: build does not work via WSL.
# Help & Support
Ask questions in the `#sql-stream-store` channel in the [ddd-cqrs-es slack](https://ddd-cqrs-es.slack.com) workspace. ([Join here](https://j.mp/ddd-es-cqrs)).
# Licences
Licenced under [MIT](LICENSE).