SQLite async connection pool for high-performance
https://github.com/slaily/aiosqlitepool
#HackerNews #SQLite #async #connection #pool #high-performance #aiosqlitepool #database

SQLite async connection pool for high-performance
https://github.com/slaily/aiosqlitepool
#HackerNews #SQLite #async #connection #pool #high-performance #aiosqlitepool #database
@alexantemachina@mastodon.social
Warum meinst du?
Datenbanken nehmen ja durch eine volle Platte nicht Schaden, im Sinne bereits gespeichertes ist auf einmal weg, sondern, dass neue Daten nicht oder nur korrupt gespeichert werden.
Grundsätzlich verstehe ich auch nicht, warum bei #HomeAssistant als Standard auf #SQlite gesetzt wird. Egal welches System mit Datenbank ich bisher installiert habe, wurde entweder direkt auf #mySQL, #MariaDB oder #Postgres gesetzt, oder zumindest empfohlen, nicht SQlite zu nehmen.
Today is the DBA Appreciation Day!
Bring your DBAs a cake and a coffee, please. And don't drop any tables in production, pretty please. It's weekend ...
Here's a challenge for you if you speak C and #PHP fluently. Somehow #SQLite seems to keep materialized CTEs for as long as the process runs which seems like it could break #frankenphp and Co. I'm not sure if my conclusions are correct - I'm pretty confused and would appreciate some insights :) https://github.com/loupe-php/loupe/pull/209 #help #BoostsAreAppreciated
Как я прокачал английский до B2 в США, разработав своё языковое приложение
После переезда в США мой английский был на уровне A1. Вместо курсов и приложений я решил создать собственный языковой тренажёр и заодно прокачать себя как fullstack-разработчика. В статье рассказываю как я парсил словари, получил бан, внедрил геймификацию и достиг уровня B2 за год.
Does anyone have any recommendations to extract a broken #sqlite database used by @signalapp on #Android on an HTC U11? (note: because the database is broken Signal will crash)
I was thinking about rooting the phone, but unlocking with flashboot would erase the data, right?
Also adb works fine for me, but can't access /data/ due to missing permissions. That's where the database is likely stored though, right?
And this is the issue I'm having: https://github.com/signalapp/Signal-Android/issues/13814.
Looked at #sqlite full text search today, stuffing it full of markdown. Would like to have a minimalist search engine as companion to a static site generator. My search for one resulted in such relevant hits as "you can use google".
Edit: Please, no JavaScript
Virtual Tables and Django Foreignkeys https://paultraylor.net/blog/2025/virtual-tables-and-django-foreignkeys/
Colophon for https://beesocial.dev for anyone interested: https://beesocial.dev/colophon.
No vibe coding, just good vibes.
"Introducing a new SQLite driver for #WordPress "
https://make.wordpress.org/playground/2025/06/13/introducing-a-new-sqlite-driver-for-wordpress/
For the DB gurus: Is it wise to model a playlist in a SQLite database as a linked list? I don’t want to have to mutate all entries when, for example, I just want to change the order of items.
But I also feel that recursively fetching the items to follow the list could impact performance for playlists with a lot of items.
#sqlite #softwaredevelopment #softwareengineering
They mentioned in the WWDC that the new LLM Framework can support semantic search. So what is now the best approach to locally search through a SQLite database?
AFAIK SwiftData is not supporting Vector embeddings and compiling a SQLite version with extensions is not so straightforward.
#wwdc25 #iosdev #sqlite
Very nice to see #river support #sqlite. The job handler is so powerful.
A lot of learnings from #oban are quite apparent on it. Which is a good thing. I want to be able use #golang without having to implement all of this plumbing terribly.
https://riverqueue.com/blog/sqlite-and-pro-dbsql-durable-periodic-jobs-performance-boosts
Found another TUI for your sysadmin toolbox
**jdbrowser** — A terminal SQLite database browser.
Supports displaying tables, copying to clipboard & more!
Written in Rust & built with @ratatui_rs
Thrilled to offer our newest distribution title: Northwind Elixir Traders by Isaak Tsalicoglou
Not your typical programming tutorial. This immersive, project-based adventure reimagines the classic Northwind database, guiding you through Ecto’s migrations, changesets, and queries to model data with real-world edge.
https://pragprog.com/titles/d-itnet?utm_source=m
#Ecto #ElixirLang #Elixir #SQLite
New blog post: Caveats Using Read-only SQLite Databases from the App Bundle
https://twocentstudios.com/2025/06/07/sql-databases-bundle/
A quick debugging story where I learnan some new things about SQLite's journal mode while building an database export/import feature for Eki Live.
TLDR:
- Journal mode is embedded in the sqlite database file itself.
- The `backup` command changes the journal mode of the target database to match the source database.
- Check the journal mode of a database with `sqlite3 db.sqlite "PRAGMA journal_mode;"`.
- Change the journal mode of a database with `sqlite3 db.sqlite "PRAGMA journal_mode=DELETE;"`.