frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

For the Love of the Game

https://slimemoldtimemold.com/2026/08/27/for-the-love-of-the-game/
1•surprisetalk•57s ago•0 comments

The AI Capex Bubble and the Parallels to 5G

https://deadneurons.substack.com/p/the-ai-capex-bubble-and-the-parallels
1•nr378•3m ago•0 comments

Britain reboots its space strategy with £7.8B on the launchpad

https://www.theregister.com/public-sector/2026/09/08/britain-reboots-its-space-strategy-with-78b-...
1•DemiGuru•5m ago•0 comments

The extended mind was always personal

https://www.thisandthat.chat/blog/the-extended-mind-was-always-personal/
1•jreynar•6m ago•0 comments

Huawei proudly shows off an un-American chip

https://www.theregister.com/systems/2026/09/08/huawei-proudly-shows-off-an-entirely-un-american-c...
1•DemiGuru•7m ago•0 comments

Show HN: Manymux: A Terminal Session Multiplexer

https://rayfish.xyz/blog/03-introducing-manymux
1•dfish•7m ago•0 comments

The first zero-click worm to spread through WeChat calls across iOS and Android

https://calif.io/research/weworm
2•geox•10m ago•0 comments

Letting AI Debug Production

https://lackofimagination.org/2026/09/letting-ai-debug-production/
1•tie-in•13m ago•1 comments

BirdCast – Bird migration forecasts in real-time

https://birdcast.org/
1•vital101•14m ago•0 comments

Causal Lineage, Session Replay, and the Missing Layer in Enterprise AI

https://medium.com/@MirArshadTalpur/causal-lineage-session-replay-and-the-missing-layer-in-enterp...
1•Arshad-Talpur•14m ago•0 comments

Terence Tao on Breakthrough in finite-time blowups for 3D incompressible Euler

https://mathstodon.xyz/@tao/117233527638291447
1•haxiomic•14m ago•0 comments

Geneticist's Y. Lu age-reversal tech could help restore sight

https://www.technologyreview.com/2026/09/08/1142074/yuancheng-ryan-lu-age-reversal-tech-restores-...
1•mdp2021•14m ago•0 comments

Implementing Adaptive Cache Replacement (Arc) Policy in Python

https://www.abhinavomprakash.com/posts/implementing-arc-cache-replacement-policy-in-python/
1•lazyfolder•14m ago•0 comments

Britain's grid operator gave Palantir contract without inviting rival bids

https://www.ft.com/content/f6a26a17-985f-4283-99c4-ba5d54e94e7f
1•robtherobber•14m ago•0 comments

Assembling context for analytics agents from existing data stacks

https://blog.getcassis.com/a-blank-beats-a-guess/
1•matthieu_bl•17m ago•0 comments

Why AI-generated slopaganda works

https://www.machinesociety.ai/p/why-ai-generated-slopaganda-works
2•mikelgan•17m ago•1 comments

Why human syntax breaks LLMs (and how to fix agentic coding)

3•aslang•18m ago•0 comments

Catenary – A spatial canvas IDE for AI coding agents

https://thecatenary.app
1•GiorgioNicolas•18m ago•0 comments

Aurora: AI gateway fork for multi-IP setups, 55x faster than LiteLLM

https://github.com/entitybtw/aurora
1•entitybtw•18m ago•0 comments

A Doctor Sued 700 Patients for Debts; 81 Were Arrested. Now He's a Senator

https://www.nytimes.com/2026/09/08/us/politics/roger-marshall-obgyn-doctor-debts.html
3•elo2000•19m ago•0 comments

Show HN: DriveSync – fast Git-styled Google Drive sync CLI

https://github.com/scaleninja/drivesync
2•rohityadavcloud•21m ago•0 comments

Key activities for sustainable engineering team

https://blog.incrementalforgetting.tech/p/key-activities-for-sustainable-engineering
1•fagnerbrack•21m ago•0 comments

Show HN: Serica: Single-binary web search and article extraction in Rust

https://github.com/walkthestars/serica
1•walkthestars•22m ago•1 comments

Intel surpasses one million High-NA EUV wafers processed

https://www.tomshardware.com/tech-industry/semiconductors/intel-surpasses-one-million-high-na-euv...
2•rbanffy•22m ago•0 comments

Four ways my unattended agents reported success while doing nothing

https://github.com/PegasidsAI/silent-failures
1•maxadams•23m ago•1 comments

Mistral bags €3B to build Europe's sovereign AI champion

https://www.theregister.com/ai-and-ml/2026/09/08/mistral-bags-3b-to-build-europes-sovereign-ai-ch...
1•backlit4034•24m ago•0 comments

Scan Before You Clone

https://www.scanrepo.dev/
1•chha•24m ago•0 comments

All the microbes you can't have

https://worksinprogress.co/issue/all-the-microbes-you-cant-have/
1•mhb•27m ago•0 comments

Research acceleration: The view inside OpenAI

https://simonwillison.net/2026/Sep/6/research-acceleration-the-view-inside-openai/
2•kyisaiah47•29m ago•1 comments

Mysterious x86 CPU Has APX, X86S Where Intel Left Off for Legacy-Free x86

https://www.phoronix.com/news/x86-CPU-With-APX-x86S
3•rbanffy•30m 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!