You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RedBase is a set of open-source .NET libraries for data storage and integration.
Three projects, one ecosystem:
---
### 🗄️ [redb](https://github.com/redbase-app/redb) — Data Platform
Typed EAV over PostgreSQL / MSSQL. Define schemas as C# classes, no migrations.
Full LINQ: Where, GroupBy, Window functions, Tree queries, aggregation.
```csharp
[RedbScheme("Order")]
public class OrderProps { public string Status { get; set; } = ""; }
var orders = await redb.Query<OrderProps>()
.Where(o => o.Status == "new")
.OrderByDescending(o => o.CreatedAt)
.ToListAsync();
Drop a DLL (or .tpkg) into a folder. Tsak loads it, manages lifecycle, scales across nodes.
REST API + CLI + Blazor dashboard. Zero downtime hot-reload.
All Apache 2.0. Production-tested at EWS — 150k orders/month, 3-node cluster.
What are you building? Drop a comment — happy to help with architecture questions.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
🔀 redb.Route — Integration Framework
Apache Camel for .NET. 22 transports, 30+ EIP patterns, compiled expression engine.
🚀 redb.Tsak — Runtime Container
Drop a DLL (or
.tpkg) into a folder. Tsak loads it, manages lifecycle, scales across nodes.REST API + CLI + Blazor dashboard. Zero downtime hot-reload.
All Apache 2.0. Production-tested at EWS — 150k orders/month, 3-node cluster.
What are you building? Drop a comment — happy to help with architecture questions.
Beta Was this translation helpful? Give feedback.
All reactions