frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Meta's AI Crawler Crashing My DB, and What I Did About It

https://usero.io/blog/meta-ai-crawler-crashing-my-db
1•willsmith72•1m ago•0 comments

CERN's migration path from CentOS Linux to Debian

https://lwn.net/SubscriberLink/1092512/45bba78661c89e5a/
1•chmaynard•3m ago•0 comments

July in Servo

https://servo.org/blog/2026/08/31/july-in-servo/
3•caminanteblanco•10m ago•0 comments

Talentblender.com – The Future's Marketplace

https://talentblender.com/register
1•seraph2000•12m ago•0 comments

1% increase in immigration leads to a 1.78%-2.97% increase in Far-Right voting (2024)

https://www.sciencedirect.com/science/article/abs/pii/S1062976924001315
2•cwwc•13m ago•0 comments

Debian code search: fast TurboPFor with Go SIMD

https://michael.stapelberg.ch/posts/2026-09-06-dcs-fast-turbopfor-go-simd/
1•valyala•14m ago•0 comments

National security risk: Berlin data leak causes major repercussions

https://www.heise.de/en/news/National-security-risk-Berlin-data-leak-causes-major-repercussions-1...
2•doener•16m ago•0 comments

But what about video games?

https://blog.glyph.im/2026/09/but-what-about-video-games.html
2•lumpa•17m ago•0 comments

The Operational Limits of Agent Security (Dec 2025)

https://cupcake.eqtylab.io/security-disclaimer/
2•ramoz•19m ago•0 comments

Infinite Digest: Illustrated Companion to David Foster Wallace's Infinite Jest

https://samizdat.co/digest/
1•CharlesW•22m ago•0 comments

Show HN: Inbundly – Google Inbox-style bundles for Gmail (open-source)

https://benoror.bearblog.dev/bringing-google-inboxs-bundles-back-to-gmail/
1•benoror•23m ago•0 comments

Cloudflare hid my site from AI. I sell AI visibility

https://foundash-ai.github.io/
1•boiled_potato•24m ago•0 comments

Fortune Telling Fraud

https://en.wikipedia.org/wiki/Fortune_telling_fraud
2•stephenlf•24m ago•1 comments

Why are drug overdose deaths declining?

https://www.statnews.com/2026/09/03/drug-overdose-deaths-down-sharply-commonwealth-fund-study/
2•EA-3167•35m ago•1 comments

CSPRNG - Cryptographically Secure Pseudorandom Number Generator

https://en.wikipedia.org/wiki/Cryptographically_secure_pseudorandom_number_generator
2•gurjeet•37m ago•0 comments

TraceUX: Self-Hosted, Privacy-First Session Replay

https://github.com/fjosue4/trace-ux
1•fjosue4•39m ago•0 comments

The Carob Trust Prize for Academic Courage

https://www.wsj.com/opinion/an-award-for-scholars-who-tell-the-truth-3c5d37e8
1•mudil•41m ago•0 comments

8 years after launch, BepiColombo begins Mercury arrival

https://www.space.com/space-exploration/missions/a-new-mission-starting-today-8-years-after-launc...
2•gmays•42m ago•0 comments

Imagine the Universe Is Running on Rovi's Games Console

https://medium.com/@legentis/imagine-the-universe-is-running-on-rovis-games-console-904974763d65
2•DavidElliman•42m ago•1 comments

Security Baseline: A Practical Guide to Ubuntu Desktop Security 24.04/26.04

https://github.com/EugeXo/security-baseline-ubuntu
2•EugeXo•46m ago•0 comments

Keeping the Candle Lit

https://idiallo.com/blog/keeping-the-candle-lit
3•foxfired•53m ago•0 comments

France Champagne Output Set to Halve on Heat Waves and Drought

https://www.bloomberg.com/news/articles/2026-09-07/france-champagne-output-set-to-halve-on-heat-w...
4•geox•55m ago•0 comments

Enough

https://github.com/jtc268/enough
3•husky8•56m ago•0 comments

The Cordon Sanitaire/Brandmauer Was a Mistake

https://twitter.com/phl43/status/2097026853412204731
4•barry-cotter•57m ago•0 comments

Utah development wants to be a solution for affordable housing

https://www.sltrib.com/news/2026/09/06/lehi-townhome-complex-shows-how/
2•toomuchtodo•1h ago•1 comments

What Hidden Motives Imply

https://www.overcomingbias.com/p/what-hidden-motives-imply
2•paulpauper•1h ago•0 comments

Like Terraform, but in Lean 4

https://ngrislain.github.io/blog/2026-9-6-like-terraform-but-in-lean-4/
2•ngrislain•1h ago•0 comments

An Alien Mind: Jakub Pachocki Warns Us

https://thezvi.substack.com/p/an-alien-mind-jakub-pachocki-warns
2•paulpauper•1h ago•0 comments

Dotfiles That Save Themselves – Jdx

https://jdx.dev/posts/2026-09-07-dotfiles-that-save-themselves/
2•grappler•1h ago•0 comments

Quire – humans and AI agents editing local Markdown together

https://github.com/heetdalsania/quire
1•heet_dalsania•1h ago•0 comments
Open in hackernews

What every developer needs to know about in-process databases

https://www.graphgeeks.org/blog/what-every-developer-needs-to-know-about-in-process-dbmss
12•semihs•1y ago

Comments

semihs•1y ago
In-process (aka embedded/embeddable) databases are not new. In fact SQLite is the most widely deployed database in the world. However, starting with DuckDB, there is a new set of in-process database systems, such as Kuzu and Lance. As a co-developer of Kuzu, I hear several frequently asked questions (some of which are misconceptions) about in-process databases.

- What are their advantages/disadvantages compared to client-server databases? - Does in-process mean databases are in-memory/ephemeral? (NO!) - Can in-process databases handle only small amounts of data? (NO!) - What are some common use cases of in-process databases? - What if my application needs a server?

I tried to answer some of these questions in a blog post with pointers to several other resources that articulate several of these points in more detail than I get into.

I hope it's helpful to clarify some of these questions and help developers position in-process DBMSs against client-server ones.

emmanueloga_•1y ago
The article suggests running Kuzu in a FastAPI frontend for network access. A caveat: production Python servers like Uvicorn [1] typically spawn multiple worker processes.

A simple workaround is serving HTTP through a single process language like Go or JavaScript, since Kuzu has bindings for both. Other processes could access the database directly in read-only mode for analysis [2].

For better DX, the ideal would be Kuzu implementing the Bolt protocol of Neo4J directly in the binary, handling single-writer and multi-reader coordination internally. Simpler alternative: port the code from [3] to C++ and add a `kuzu --server` option.

--

1: https://fastapi.tiangolo.com/deployment/server-workers/#mult...

2: https://docs.kuzudb.com/concurrency/#scenario-2-multiple-pro...

3: https://github.com/kuzudb/explorer/tree/master/src/server

semihs•1y ago
Yes this makes sense and we plan to eventually do something along what you are suggesting. We also have a plan to have a built-in server/GUI, where users can directly launch a web-based explorer through our CLI by typing "kuzudb -ui".
emmanueloga_•1y ago
That sounds great!