frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Stealing 50 Years of Database Ideas for AI Agents

https://onewill.ai/blog/2026/stealing-50-years-of-database-ideas-for-ai-agents/
1•lmwnshn•41s ago•0 comments

Solid and Clean Code never felt solid or clean to me

https://devz.cl/posts/solid-never-felt-solid/
1•DanielVZ•2m ago•0 comments

Applesauce: Transparent Compression for Apple File System Compression (AFSC)

https://github.com/Dr-Emann/applesauce
2•soheilpro•6m ago•0 comments

After 6 months of delays, Brilliant Labs delays smartglasses again

https://jfloren.net/b/2026/6/30/0
2•floren•6m ago•0 comments

BYD's flagship electric SUV won an anti-motion-sickness certification

https://electrek.co/2026/06/30/byds-flagship-electric-suv-wins-anti-motion-sickness-certification/
1•dabinat•9m ago•1 comments

I need some inspiration for Diploma

3•sky_flower•11m ago•2 comments

Scaling PgBouncer across every core with SO_REUSEPORT and peering

https://clickhouse.com/blog/pgbouncer-clickhouse-managed-postgres
1•cauchyk•12m ago•0 comments

The 'Father of the Internet' is finally retiring

https://techcrunch.com/2026/06/30/the-father-of-the-internet-is-finally-retiring/
2•Brajeshwar•13m ago•0 comments

Statistical Picture of Quantum Mechanics

https://scottlocklin.wordpress.com/2026/06/27/statistical-picture-of-quantum-mechanics/
1•surprisetalk•14m ago•0 comments

GPT-5.6 cheats so much its testers couldn't measure it

https://www.transformernews.ai/p/openai-gpt-56-sol-cheating-scheming-metr
4•shakeelhashim•15m ago•2 comments

Show HN: A simulation of a hybrid pulse-position and duration modulation concept

https://github.com/Morphsec88/vse-compute-over-storage
2•Morphsec88•17m ago•0 comments

Show HN: Do you want a semantic cache for free with zero code changes?

https://github.com/GuglielmoCerri/khazad
1•guglielmoce•18m ago•0 comments

Meta loses bid to dismiss US states' claims that FB, Instagram addict children

https://www.reuters.com/legal/government/meta-loses-bid-dismiss-us-states-claims-that-facebook-in...
4•tartoran•19m ago•0 comments

How To Read Something: The book is a block of wood

https://chillphysicsenjoyer.substack.com/p/how-to-read-something
1•crescit_eundo•21m ago•1 comments

We Can Pay for College Just Changed. What Borrowers Need to Know

https://www.wsj.com/personal-finance/student-loans-repayment-deadline-8bbc06e4
1•JumpCrisscross•21m ago•0 comments

The worst API ever made (2014)

https://caseymuratori.com/blog_0025
1•KomoD•22m ago•0 comments

Wallpaper Engine: Removal of Application Wallpapers from the Workshop

https://store.steampowered.com/news/app/431960/view/699894448411116924
1•haunter•22m ago•0 comments

We're Making an Open Source American Kei Truck [video]

https://www.youtube.com/watch?v=tlZlyp55dww
1•abetusk•23m ago•1 comments

AOL Owner to Go Public at over $18B Valuation

https://www.wsj.com/finance/stocks/aol-owner-to-go-public-at-over-18-billion-valuation-d00f302c
2•JumpCrisscross•23m ago•0 comments

HamsterOS jams a 32-bit GUI operating system in a single 1.44 MB floppy disk

https://www.tomshardware.com/video-games/retro-gaming/hamsteros-jams-a-32-bit-gui-operating-syste...
2•LorenDB•24m ago•0 comments

Ozone depletion began decades before discovery of ozone hole

https://news.mit.edu/2026/scientists-find-ozone-depletion-began-decades-before-ozone-hole-discove...
1•gmays•24m ago•0 comments

What's holding up the rollout of persistent domain validation for ACME?

https://www.turbolightsolutions.com/posts/dns-persist-01-rollout-blocked-by-security-issue/
3•keydown•26m ago•0 comments

The Origin of Tweet (2013)

https://furbo.org/2013/06/28/the-origin-of-tweet/
1•downbad_•27m ago•0 comments

More Americans Are Installing Residential Battery Storage

https://www.bloomberg.com/news/articles/2026-07-01/us-home-battery-installations-boosted-by-state...
1•toomuchtodo•27m ago•1 comments

Kim Dotcom Loses Court of Appeal Bid to Block Extradition to the U.S.

https://torrentfreak.com/kim-dotcom-loses-court-of-appeal-bid-to-block-extradition-to-the-u-s/
6•Brajeshwar•28m ago•2 comments

Optimization tales with CockroachDB: the slow logout

https://gaultier.github.io/blog/optimization-tales-cockroachdb-part2-slow-logout.html
1•broken_broken_•29m ago•0 comments

In Praise of Observational Evidence

https://asteriskmag.com/issues/14/in-praise-of-observational-evidence
1•fi-le•29m ago•0 comments

A small island in Estonia negotiated special rights

https://news.err.ee/1610067196/ruhnu-residents-sought-to-join-sweden-after-estonia-regained-indep...
1•NalNezumi•29m ago•0 comments

Why changing your productivity system is good

https://birchtree.me/blog/why-changing-your-productivity-system-is-good-actually/
1•surprisetalk•29m ago•0 comments

How We Made IPFS Content Publishing 10x Faster

https://probelab.io/blog/optimistic-provide/
3•dennis-tra•29m 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!