frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Customizing my Compaq MX-11800 keyboard

https://blog.webb.page/WM-102
1•NetOpWibby•1m ago•0 comments

Gmail/Google Docs Down?

1•kappi•2m ago•0 comments

Tesla touts European supervised self-driving safety data ahead of EU vote

https://www.reuters.com/business/autos-transportation/tesla-touts-european-supervised-self-drivin...
1•tosh•2m ago•0 comments

CampRoo – Free Camping Spots

https://camproo.com
1•aziz10101•2m ago•0 comments

FSD Supervised now approved in Slovenia

https://twitter.com/teslaeurope/status/2097007168939593780
1•tosh•3m ago•0 comments

San Francisco institution 'heartbroken and furious' after erasure of public art

https://www.sfgate.com/local/article/clarion-alley-murals-erased-22420365.php
1•mikhael•3m ago•0 comments

The auto-formalization of mathematics versus law

https://lexifina.com/blog/auto-formalisation-of-law
2•alansaber•5m ago•0 comments

SnapFire FSR: Write TypeScript. Run Rust. Ditch Node.js

https://snapfirers.com/
1•excsn•8m ago•1 comments

A fast client only protein viewer

https://github.com/buyukakyuz/protein-foldspace
2•replaski16•8m ago•0 comments

The Aviation Herald was sued – July 31st 2026

https://avherald.com/h?article=53c8958a
1•embedding-shape•9m ago•0 comments

Ancient cave art suggests first known humans in Ireland walked over from Wales

https://www.bbc.com/news/articles/c5y75dl0jpko
1•bookofjoe•9m ago•1 comments

Humpback whales are interrupting orca hunts to rescue different species

https://spacedaily.com/k-humpback-whales-are-interrupting-orca-hunts-to-rescue-completely-differe...
2•cobbzilla•11m ago•0 comments

VDN Vai Dar Namoro

https://vaidarnamoroonline.netlify.app
1•gabrielantonio•13m ago•0 comments

Bun rewrite and FLT formalization had nearly identical resource usage

2•Zsfe510asG•15m ago•1 comments

Show HN: Raw Screen Recordings into Cinematic Apple-Style Product Demos

https://isolate.video/
4•vignesh_warar•15m ago•0 comments

YC Demo Day This Thursday

https://www.neweconomies.co/p/y-combinator-summer-26-batch
1•ollieforsyth•17m ago•0 comments

Russia opens first road bridge with North Korea

https://www.dw.com/en/russia-opens-first-road-bridge-with-north-korea/a-79142595
2•everybodyknows•18m ago•0 comments

Can the U.S. afford a major war? Not with this deficit

https://www.washingtonpost.com/opinions/interactive/2026/09/07/deficit-is-biggest-threat-us-natio...
2•moat•19m ago•1 comments

Show HN: Isle – managed application environments for computer-use agents

https://www.tryisle.com
4•sxhivs•20m ago•1 comments

Show HN: Security and JSON tools that run in the browser

https://sentrint.com/tools
3•xEcho•21m ago•0 comments

The Download: the hunt for underground hydrogen and more rogue OpenAI agents

https://www.technologyreview.com/2026/09/07/1143592/the-download-underground-hydrogen-search-rogu...
3•joozio•21m ago•0 comments

Root cause analysis of the Liquid network split and 3,998.67 BTC peg-out theft

https://gist.github.com/1440000bytes/211ac92dd4433bb1a2e674bf0ff7db2e
2•binyu•22m ago•0 comments

Can AI Replace a Nevada Brothel Sex Worker?

https://brothelnevada.com/2026/09/05/ai-replace-sex-workers/
1•Teever•23m ago•0 comments

PostgreSQL 19 Interactive Tour

https://victoriametrics.com/blog/postgres-19/index.html
3•valyala•24m ago•0 comments

Bitcoin sidechain Liquid hacked for ~4k BTC

https://nehanarula.org/2026/09/07/liquid-hack.html
4•nehan•25m ago•1 comments

$70 Open Source Brain-Computer Interface Octopus 16 by PiEEG

https://www.indiegogo.com/en/projects/pieeg/pieeg_octopus
1•Christiangmer•25m ago•0 comments

Show HN: Mystra – a monitor that signs up and reaches checkout on your app

https://mystra.run
1•danik7x•27m ago•0 comments

Show HN: Gote – a CLI note-taking management tool for plain Markdown

4•banorton•27m ago•0 comments

LHC magnets run at 1.9 K, below the superfluid helium lambda point

https://scienceshot.com/post/lhc-colder-than-outer-space
1•major_stef•28m ago•0 comments

Ask HN: Which is better for backend? JavaScript or Python?

2•skwasimin•31m ago•1 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!