kynetradb
One Rust binary: BM25 search + vector + KV + document + auth + files + realtime + agentic admin.
vs
Nhost
Open-source Firebase alternative on Postgres + Hasura GraphQL + auth + storage.
Feature comparison
| Dimension | kynetradb | Nhost |
|---|---|---|
| Full-text search | BM25 — reference catalogue | trigram |
| Vector search | Brute-force cosine evaluationNhost uses HNSW which scales better past ~100k vectors | HNSW |
| Auth | Preview scope | Built-in |
| Row-Level Security | Preview scope | Postgres RLS |
| File storage | Preview scope | Built-in |
| Realtime | Preview scope | WebSocket |
| Edge Functions | Preview scope | No |
| TypeScript SDK | Preview scope | Yes |
| KV lookups | Preview scope | No |
| Document filter | Preview scope | Yes |
| LLM runtime | Preview scope | No |
| Outbound DB sync | Preview scope | No |
| Self-host | Preview scope | Yes |
| Single binary | Preview scope | No |
| License | Preview terms — request a scoped evaluation | MIT |
| Deploy targets | 19 target profiles | 1 listed target profiles |
| Free tier | Preview access by request | yes — Starter plan |
When to pick Nhost
If you want GraphQL-first Postgres with realtime subscriptions out of the box, Nhost's Hasura integration is the easiest path.
- Your team is SQL-native and needs relational joins.
- Your team is already invested in Nhost's SDK and ecosystem.
When to pick kynetradb
- You want a comparison-led conversation about BM25 full-text, vector evaluation, and data-plane trade-offs.
- You need a product-specific implementation scope rather than a generic migration claim.
- You want to assess 19 hosting target profiles, including 5 Indian providers.
- You want a scoped preview conversation about the data, deployment, and operating boundary.
- You want a single binary with no runtime dependencies — no container fleet to operate.
Create a record — both APIs side by side
Insert a product record. These are documentation-accurate shapes, not runnable end-to-end examples.
kynetradb
// kynetradb — @kynetra/client TypeScript SDK
import { createClient } from '@kynetra/client'
const kdb = createClient('https://your.host', PUBLISHABLE_KEY)
const { data, error } = await kdb
.from('products')
.insert({ title: 'Aurora Espresso', vendor: 'Aurora', price: 2200 })
.select()Nhost
// Nhost — GraphQL mutation
const INSERT_PRODUCT = gql`
mutation InsertProduct($title: String!, $vendor: String!, $price: Int!) {
insert_products_one(object: { title: $title, vendor: $vendor, price: $price }) {
id
}
}
`;