frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Enhancing Server Availability and Security Through Failure-Oblivious Computing [pdf]

https://people.csail.mit.edu/rinard/paper/osdi04.pdf
1•pabs3•56s ago•0 comments

The "Connectivome Theory": A New Model to Understand Autism Spectrum Disorders

https://pmc.ncbi.nlm.nih.gov/articles/PMC8892379/
1•AndrewDucker•1m ago•0 comments

Recursive Acronym

https://en.wikipedia.org/wiki/Recursive_acronym
1•Quizzical4230•3m ago•0 comments

Soulful Sites

https://app.paradigmai.com/sheets/76210606-6ce4-4ccc-a005-fb1cf6984a45
1•sauravmaheshkar•5m ago•0 comments

LLMs are not a higher level of abstraction

https://www.lelanthran.com/chap15/content.html
2•lelanthran•6m ago•1 comments

Ask HN: RedHat for Personal Use

2•bozdemir•7m ago•1 comments

The Truth About China's Green Energy Industry [video]

https://www.youtube.com/watch?v=Ff0AYRWrnGY
1•mpweiher•7m ago•0 comments

"Grandma, get on": Ukrainian robot carried 77-year-old from grey zone near Lyman

https://euromaidanpress.com/2026/04/25/grandma-get-on-ukrainian-robot-carried-77-year-old-from-gr...
1•eternalreturn•8m ago•0 comments

Claude Code Opus-4-7 VS Codex GPT-5-5

1•rashidae•8m ago•0 comments

MobED: Mobile Eccentric Droid – A robotic platform from Hyundai (2022) [video]

https://www.youtube.com/watch?v=uQqXbXpmkc0
1•num42•8m ago•1 comments

Ask HN: Paid ambient/background noise for focus?

1•deaux•12m ago•1 comments

A Website, Hosted on an ESP32

https://helloesp.com/
1•agilek•13m ago•0 comments

Show HN: AI voice screens for hiring managers to save time

https://worksignal.com/demo
1•cdnsteve•15m ago•0 comments

Show HN: AI agents that learn from their own failures each week

https://www.deployinfra.ai/
1•dkarigi•15m ago•0 comments

French teen who licked vending machine straw faces years in jail in Singapore

https://www.bbc.com/news/articles/cjw8w849g6go
4•jb1991•19m ago•1 comments

Was sind und was sollen die unendlichdimensionalen Supermannigfaltigkeiten

https://mathoverflow.net/questions/510716/was-sind-und-was-sollen-die-unendlichdimensionalen-supe...
1•jjgreen•19m ago•0 comments

Mapping the dreamworld: inside Le Guin's unseen cartographies of myth and mind

https://www.designboom.com/art/mapping-the-dreamworld-inside-ursula-k-le-guins-unseen-cartographi...
1•bryanrasmussen•21m ago•0 comments

Ask HN: Are you concerned by TLS-terminating proxies like Cloudflare Tunnels?

2•thom-gtdp•23m ago•2 comments

Identifying the topographic signature of early Martian oceans

https://www.nature.com/articles/s41586-026-10381-2
1•bryanrasmussen•24m ago•0 comments

What even is a Programming Language?

https://medium.com/invisible-lab/what-even-is-a-programming-language-725eba75fc10
1•jotaalvim•24m ago•0 comments

It's OK to abandon your side-project

https://robbowen.digital/wrote-about/abandoned-side-projects/
8•hisamafahri•28m ago•0 comments

Store >> HTTPS://Www.facebook.com/TopCarPlayWirelessCarPlay.Get/

https://www.facebook.com/TopCarPlayWirelessCarPlay.Get
1•marianatroop•35m ago•0 comments

Dizzy Dithering

https://liamappelbe.medium.com/dizzy-dithering-2ae76dbceba1
2•brickers•37m ago•0 comments

Classic HN: Growing a Language [video]

https://www.youtube.com/watch?v=lw6TaiXzHAE
2•ColinWright•38m ago•0 comments

DSpico: The first open-source Nintendo DS flashcart

https://www.lnh-team.org/
2•stratts•38m ago•1 comments

Are Media Buyers Becoming Obsolete?

1•navosagent•38m ago•0 comments

I Rebuilt FORMLOVA's Form Comparison Content Cluster Around One SEO Bet

https://www.indiehackers.com/post/i-rebuilt-formlovas-form-comparison-content-cluster-around-one-...
1•Lovanut•38m ago•0 comments

Show HN: OgBlocks – Copy Paste Animations for React Developers

https://ogblocks.dev
2•karanzhacker•39m ago•0 comments

Can You Find the Comet?

https://apod.nasa.gov/apod/ap260427.html
3•ColinWright•40m ago•0 comments

Things Michelle Kim Is Into

https://www.technologyreview.com/2026/04/22/1135423/3-things-michelle-kim/
1•joozio•40m 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!