Menu
Sign In Search Podcasts Charts People & Topics Add Podcast API Pricing

Pekka Enberg

👤 Person
126 total appearances

Appearances Over Time

Podcast Appearances

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

We quickly discovered that SQLite itself is pretty agile, worked really well, but it was just missing some features like replication, which we needed at the time. So that's the thing that we do. We built those features to SQLite to make it really awesome for modern production workloads.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

So actually really early on, one of the things which we focused on is this ability to bring the database close to, essentially close to the user. People doing web apps where latency is essential for great customer experience. that is something that really resonates with people.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

So actually really early on, one of the things which we focused on is this ability to bring the database close to, essentially close to the user. People doing web apps where latency is essential for great customer experience. that is something that really resonates with people.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

So actually really early on, one of the things which we focused on is this ability to bring the database close to, essentially close to the user. People doing web apps where latency is essential for great customer experience. that is something that really resonates with people.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

And if you combine it with something like Cloudflare Workers, for example, you can actually cut down a lot of the sort of overall latency, just have a better response time, essentially. But we also, something that we did, which is maybe slightly counterintuitive, SQLite is an in-process database.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

And if you combine it with something like Cloudflare Workers, for example, you can actually cut down a lot of the sort of overall latency, just have a better response time, essentially. But we also, something that we did, which is maybe slightly counterintuitive, SQLite is an in-process database.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

And if you combine it with something like Cloudflare Workers, for example, you can actually cut down a lot of the sort of overall latency, just have a better response time, essentially. But we also, something that we did, which is maybe slightly counterintuitive, SQLite is an in-process database.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

So it's a library that you put into your application and now the database is in the same sort of, it's in your application. But we also added a mode where you can access SQLite remotely. So turning it into something similar to Postgres. But the thing with SQLite is it's so lightweight that you can get lots and lots of databases.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

So it's a library that you put into your application and now the database is in the same sort of, it's in your application. But we also added a mode where you can access SQLite remotely. So turning it into something similar to Postgres. But the thing with SQLite is it's so lightweight that you can get lots and lots of databases.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

So it's a library that you put into your application and now the database is in the same sort of, it's in your application. But we also added a mode where you can access SQLite remotely. So turning it into something similar to Postgres. But the thing with SQLite is it's so lightweight that you can get lots and lots of databases.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

So one interesting thing that people are using Tools for is essentially having a database per tenant. So database per user, for example, architecture, which is great for SaaS applications and things like that.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

So one interesting thing that people are using Tools for is essentially having a database per tenant. So database per user, for example, architecture, which is great for SaaS applications and things like that.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

So one interesting thing that people are using Tools for is essentially having a database per tenant. So database per user, for example, architecture, which is great for SaaS applications and things like that.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

Two things to update on. And maybe the first one is actually, let's say, more boring incremental part. Because actually, when we first started to work on Turso, as I mentioned, like this edge part was a key thing for us. So even if it's infrastructure, you can't really be that agile in infrastructure space.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

Two things to update on. And maybe the first one is actually, let's say, more boring incremental part. Because actually, when we first started to work on Turso, as I mentioned, like this edge part was a key thing for us. So even if it's infrastructure, you can't really be that agile in infrastructure space.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

Two things to update on. And maybe the first one is actually, let's say, more boring incremental part. Because actually, when we first started to work on Turso, as I mentioned, like this edge part was a key thing for us. So even if it's infrastructure, you can't really be that agile in infrastructure space.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

But you can still find ways to do proof of concepts and really aggressively validate and work with. Around the time Glover was on this podcast, we had just announced something called Embedded Replicas, and we were actually working on the multi-tenancy thing that I mentioned. And those were actually just things that we already had on the roadmap since after the first six months.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

But you can still find ways to do proof of concepts and really aggressively validate and work with. Around the time Glover was on this podcast, we had just announced something called Embedded Replicas, and we were actually working on the multi-tenancy thing that I mentioned. And those were actually just things that we already had on the roadmap since after the first six months.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

But you can still find ways to do proof of concepts and really aggressively validate and work with. Around the time Glover was on this podcast, we had just announced something called Embedded Replicas, and we were actually working on the multi-tenancy thing that I mentioned. And those were actually just things that we already had on the roadmap since after the first six months.

Code Story: Insights from Startup Tech Leaders
S10 Turso Update with Pekka Enberg

And it's just basically, once you start to work on It's a different way of using the database. Like you can have the database inside your application, but you can still have replication. So you can have durability on basically offloading to the cloud, but also this multi-tenancy thing and all the sort of schema migration and all that stuff. And it is still ongoing work.