ElectricSQL
@electric-sql.com
880 followers 410 following 55 posts
Building AI apps? You need sync. https://electric-sql.com - see also @pglite.dev
Posts Media Videos Starter Packs
Reposted by ElectricSQL
adamwiggins.bsky.social
Sync seems to be having a moment among web developers!
Reposted by ElectricSQL
filipecabaco.com
using bun and pglite from @electric-sql.com I'm able to create in memory or persisted postgres instances (one per bun process) available to use with Postgrex via `socket_dir`

in theory I could have a "cheap read replica" or simpler testing #myelixirstatus
Reposted by ElectricSQL
thruflo.com
One day boutique conference for the sync era of the web. Hear from the world's top builders about how to develop systems in the era of agentic software and real-time sync.
syncconf.bsky.social
Announcing Sync Conf 2025. Join us in SF on Nov 12th.
Reposted by ElectricSQL
balegas.bsky.social
That's 168ms -> 1.6ms! and we have a lot of good ideas how to make it even faster.
electric-sql.com
The lesson: by shipping a system that works into production early and learning from it, allowed us to design a much better solution based on real-world requirements.
electric-sql.com
We've been running Electric in production for a year so we knew exactly what we needed: fast append-only writes and no data processing on reads.

The performance gains exceeded our expectations.
electric-sql.com
We're already syncing data to millions of clients in real-time behind a CDN, but our write path was heavily under-optimized.

The result: high CPU usage, accumulating WAL on Postgres, and high end-user p95 latencies.
Reposted by ElectricSQL
thruflo.com
LangChain, vector databases, instruction routing, specialized memory stores.

You'd be forgiven for thinking you need a whole new stack to build agentic systems. However, that isn't actually the case: electric-sql.com/blog/2025/08...
Bringing agents back down to earth | ElectricSQL
Agentic AI, beneath all the hype, is actually just normal software. You can build agentic systems with a database, standard web tooling and real-time sync.
electric-sql.com
electric-sql.com
How to build agentic systems on real-time sync.
thruflo.com
Agentic AI, beneath all the hype, is actually just normal software. You can build agentic systems with a database, standard web tooling and real-time sync.
electric-sql.com
We're just magic good sleep enablers! 😎
electric-sql.com
We fixed IPv6 fallbacks, WAL slot recovery, memory leaks, file handle exhaustion, replication races, and dozens more issues.

The boring stuff that makes infrastructure work. Because when AWS launched S3, they didn't lead with features — they led with eleven nines. 🎯
electric-sql.com
Some highlights from our sprint:

• Connection recovery: 18s → 1.2s median recovery time
• Zero-downtime operations: clients stay connected through restarts
• Live schema changes: Electric adapts as your database evolves
• Better observability: see exactly what's happening
electric-sql.com
The results? @triggerdotdev.bsky.social achieved 20,000 updates/sec with sub-100ms latency handling 500GB+ daily Postgres traffic using Electric. Our Cloud syncs data to devices in 100+ countries monthly.

How? Postgres + HTTP foundation + serious reliability engineering.
electric-sql.com
Infrastructure software can't have bugs. Your sync layer is load-bearing infrastructure with database-level expectations.

We looked to S3 (11 nines!) and Redis for inspiration. They're simple ideas made extraordinary through relentless reliability engineering.
electric-sql.com
ElectricSQL recently completed a 120-day reliability sprint. Our one goal: make our sync engine so boring-reliable you stop thinking about it and just build.

We chased every incident, fixed every user-reported bug, and made unglamorous work our priority. 🧵
electric-sql.com
We look forward to collaborating more to make TanStack DB the future of app development with Electric and the best way to build the new generation of AI apps and agentic systems.
electric-sql.com
It's been a pleasure to partner with @tannerlinsley.com and the @tanstack.com team on this.

HT to @kyle.bricolage.io and @samwillis.uk for leading the work from our side.
electric-sql.com
Tanstack DB is a reactive client store for building super fast apps on sync.

Based on a TypeScript implementation of differential dataflow, it's type-safe, declarative, incrementally adoptable and insanely fast.
Reposted by ElectricSQL
kyle.bricolage.io
🎉 TanStack DB now has @solidjs.com support!
Reposted by ElectricSQL
kyle.bricolage.io
TanStack DB now has @svelte.dev support!
<script lang="ts">
import { useLiveQuery } from "@tanstack/svelte-db"
import { eq } from "@tanstack/db"
import { todoCollection } from "$lib/collections"

const todosQuery = useLiveQuery((query) =>
  query
    .from({ todos: todoCollection })
    .where(({ todos }) => eq(todos.completed, false))
)
</script>


<List items={todosQuery.data} />