ElectricSQL's Avatar

ElectricSQL

@electric-sql.com.bsky.social

Building AI apps? You need sync. https://electric-sql.com - see also @pglite.dev

845 Followers  |  410 Following  |  50 Posts  |  Joined: 20.11.2024  |  1.6661

Latest posts by electric-sql.com on Bluesky

We're just magic good sleep enablers! 😎

04.08.2025 17:28 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
120Β days of hardening – the post‑1.0 reliability sprint | ElectricSQL Our last quarter was a reliability sprint. We set one goal: make ElectricSQL so boring‑reliable that you stop thinking about it and just build.

electric-sql.com/blog/2025/08...

04.08.2025 16:57 β€” πŸ‘ 4    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0

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. 🎯

04.08.2025 16:57 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

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

04.08.2025 16:57 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

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.

04.08.2025 16:57 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

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.

04.08.2025 16:56 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

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. 🧡

04.08.2025 16:56 β€” πŸ‘ 29    πŸ” 6    πŸ’¬ 2    πŸ“Œ 1
Preview
RFC:Β Cross-TableΒ ShapeΒ FilteringΒ withΒ SubqueryΒ Support Β· electric-sql electric Β· Discussion #2931 Summary Electric currently limits shapes to single-table filtering, preventing developers from expressing common authorization patterns that require cross-table relationships. This RFC proposes ext...

We just posted an RFC for a significant oft-requested feature β€” cross-table shape filtering β€” check it out and comment!

github.com/electric-sql...

01.08.2025 16:21 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

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.

29.07.2025 18:05 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

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.

29.07.2025 18:05 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Preview
Local-first sync with TanStackΒ DB andΒ Electric | ElectricSQL Tanstack DB is a reactive client store for building super fast apps on sync. Paired with Electric, it provides an optimal end-to-end sync stack for local-first app development.

Paired with Electric, TanStack DB provides an optimal end-to-end sync stack for local-first app development.

electric-sql.com/blog/2025/07...

29.07.2025 18:05 β€” πŸ‘ 11    πŸ” 3    πŸ’¬ 1    πŸ“Œ 1

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.

29.07.2025 18:05 β€” πŸ‘ 13    πŸ” 4    πŸ’¬ 1    πŸ“Œ 0
Preview
Stop Re-Rendering β€” TanStack DB, the Embedded Client Database for TanStack Query | TanStack Blog Your React dashboard shouldn't grind to a halt just because one TODO turns from ☐ to β˜‘. Yet every optimistic update still kicks off a cascade of re-renders, filters, useMemos and spinner flashes. If y...

TanStack DB is now in BETA!

We’ve been working on TanStack DB, an embedded, reactive client database for TanStack Query, and are proud to announce today that with the 0.1 release that it's now in BETA!

tanstack.com/blog/tanstac...

29.07.2025 17:59 β€” πŸ‘ 79    πŸ” 9    πŸ’¬ 2    πŸ“Œ 3
Video thumbnail

πŸŽ‰ TanStack DB now has @solidjs.com support!

25.07.2025 21:53 β€” πŸ‘ 46    πŸ” 9    πŸ’¬ 3    πŸ“Œ 2
<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} />

<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} />

TanStack DB now has @svelte.dev support!

23.07.2025 19:27 β€” πŸ‘ 58    πŸ” 10    πŸ’¬ 1    πŸ“Œ 1
Post image

PGlite (WASM Postgres) now gets over 1 million downloads a week! πŸ€―πŸš€
Absolutely incredible to see how people have embraced what we have built.
Awesome work by the team!

14.07.2025 15:28 β€” πŸ‘ 62    πŸ” 11    πŸ’¬ 1    πŸ“Œ 2
"Syncing Postgres into the Client" with James Arthur
YouTube video by San Francisco Bay Area PostgreSQL Users Group "Syncing Postgres into the Client" with James Arthur

Building apps on Postgres? Here how to do it using sync: youtu.be/mDzzK5-XkZ8?...

03.07.2025 09:51 β€” πŸ‘ 13    πŸ” 4    πŸ’¬ 1    πŸ“Œ 0
Video thumbnail

Excited to release a new starter! Sync-first, production-ready, and blazing fast

- @tanstack.com Start
- @tanstack.com DB for blazing fast client-side queries
- @electric-sql.com for real-time sync from PG
- Better-Auth
- @drizzleorm.bsky.social
- @tailwindcss.com
- Hono OpenAPI

02.07.2025 20:22 β€” πŸ‘ 37    πŸ” 5    πŸ’¬ 4    πŸ“Œ 1

We want to be like S3 and Redis β€” powerful technologies that you setup once and never think about again.

01.07.2025 17:02 β€” πŸ‘ 8    πŸ” 2    πŸ’¬ 0    πŸ“Œ 0
Post image

If you look at our commit history, it's months of bug fixes and performance improvements. It's this sort of sustained effort to surface and fix every bug that will enable Electric to hit the quality bar.

01.07.2025 17:02 β€” πŸ‘ 7    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0

The main obstacle to sync is it's a new black box. Is it reliable/fast enough to drive critical data flows? People rightfully have a db-level quality bar.

If it seems like Electric has been quiet lately, it's because we're 100% focused on meeting this bar.

01.07.2025 17:02 β€” πŸ‘ 5    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0

Really looking forward to Sync London tomorrow!
A bunch of exciting talks from teams building real apps on sync engines πŸš€πŸ₯³

30.06.2025 09:44 β€” πŸ‘ 1    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Preview
Sync London Β· Luma Interesting in building products on a local-first / sync engine architecture? Come along to the first Sync London, a meetup to learn and talk about better ways…

Not long now!
lu.ma/sync-london

Talks are shaping up great and we’re well past venue capacity. @yonz.bsky.social is airborne. @samwillis.uk has sorted out the pineapple cubes and cocktail sausages.

If you’re in London on Tuesday and have been lurking so far, now’s your last chance!

29.06.2025 18:30 β€” πŸ‘ 2    πŸ” 3    πŸ’¬ 0    πŸ“Œ 1
Video thumbnail

Excited to share a new starter for building apps with
@expo.dev , @tanstack.com DB & @electric-sql.com

TanStack DB is nearing its first alpha so we're fine-tuning, writing docs, and building starters.

23.06.2025 20:55 β€” πŸ‘ 40    πŸ” 5    πŸ’¬ 1    πŸ“Œ 0
Preview
"Syncing Postgres into the Client" with James Arthur, Tue, Jun 10, 2025, 12:00 PM | Meetup Join us virtually on Tuesday, June 10th for "Syncing Postgres into the Client" with James Arthur. Postgres has binary and logical replication for syncing data between repl

I'm speaking about syncing Postgres into the client with
@electric-sql.com at the SF Bay Area Postgres users groups tomorrow (Tuesday 10th June).

Online from noon local time, live stream here: www.meetup.com/postgresql-1...

09.06.2025 14:54 β€” πŸ‘ 6    πŸ” 2    πŸ’¬ 0    πŸ“Œ 0

Here’s @samwillis.uk talking about how we built @pglite.dev and the future of the project at @pgconf.dev in Montreal last month.

09.06.2025 13:12 β€” πŸ‘ 7    πŸ” 2    πŸ’¬ 0    πŸ“Œ 0
James Arthur - Introducing TanStack DB
YouTube video by Local-First Conf James Arthur - Introducing TanStack DB

Here's my @localfirstconf.com talk introducing @tanstack.com DB, hexdocs.pm/phoenix_sync, syncconf.dev and arguing that Sync is the key to mainstream adoption of #local-first.

youtu.be/ia9FpY_Sw_4?...

05.06.2025 17:05 β€” πŸ‘ 36    πŸ” 6    πŸ’¬ 1    πŸ“Œ 3
Preview
Vibe coding with a database in the sandbox | ElectricSQL More play less infra. With PGlite you can vibe code with a database built into the sandbox.

Blog post for more details, including the prompt templates: electric-sql.com/blog/2025/06...

05.06.2025 11:51 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Video thumbnail

🧡 More play less infra => vibe coding with the database inside the sandbox.

Apps built with AI app builders like @bolt.new usually need to connect to a database to actually work. With @pglite.dev you can have the database inside the sandbox, so you can vibe code without even thinking about infra.

05.06.2025 11:51 β€” πŸ‘ 13    πŸ” 6    πŸ’¬ 1    πŸ“Œ 3
Preview
Sync Conf 2025 | 12th Nov 2025, SF Join us for the first edition of Sync Conf in San Fransisco the 12th of November 2025. Sync is a key component of fast modern apps and local-first software.

Early-bird tickets and CFP both still open for Sync Conf in SF on Nov 12th syncconf.dev

04.06.2025 11:15 β€” πŸ‘ 3    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0

@electric-sql.com is following 19 prominent accounts