frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: How much correlation should a privacy system preserve?

1•Securelytixdev•1m ago•0 comments

GreenNeural – Real‑time carbon intensity for cloud regions (AWS, Azure, GCP)

https://greenneural.up.railway.app/
1•Joshblvck•5m ago•0 comments

Who Aligns the Aligners?

https://prestonbyrne.com/2026/09/13/aligners/
2•timr•6m ago•0 comments

Doctor Doom Shows Up to Support Seattle's Surveillance Network

https://gizmodo.com/doctor-doom-shows-up-to-support-seattles-surveillance-network-2000809919
1•rdmuser•8m ago•0 comments

Mary Beard: 'There is a deeply far-right appropriation of the classics'

https://english.elpais.com/culture/2026-07-05/mary-beard-historian-there-is-a-deeply-far-right-ap...
1•robtherobber•14m ago•0 comments

Hello, how you guys doing

2•vanshsoni0027•14m ago•2 comments

Israel accused of eliminating living conditions for Palestinians in West Bank

https://www.theguardian.com/world/ng-interactive/2026/sep/14/israel-palestinian-living-conditions...
6•hebelehubele•15m ago•1 comments

A lesson in lighting through blade runner

https://nofilmschool.com/2013/07/a-lesson-in-lighting-through-blade-runner
1•srean•16m ago•0 comments

Free Polymarket whale tracker (client-side, $0 to run)

https://polymarket-whale-cockpit.pages.dev/
1•RedFoxxie•18m ago•0 comments

Big AI sets out its terms for regulatory capture

https://www.theregister.com/ai-and-ml/2026/09/14/big-ai-sets-out-its-terms-for-regulatory-capture...
3•joebuckwilliams•20m ago•0 comments

We tasted and ranked 17 different Mango varieties to find the best one

https://aakritwrites.com/best-mango-variety/
1•aakritpatel•20m ago•0 comments

What is an agent harness really?

https://tej.as/blog/what-is-an-agent-harness
1•tejaskumar_•21m ago•0 comments

The Index Structures of Fast C++ Hash Maps

https://martin.ankerl.com/2026/09/09/hash-map-index-structures/
1•wscott•21m ago•0 comments

How Is Compression Prediction?

https://lukefleed.xyz/posts/compression/
3•aziis98•25m ago•0 comments

The "Nonexistent" Research on AI's Benefits for Education

https://www.insidehighered.com/news/tech-innovation/artificial-intelligence/2026/09/14/nonexisten...
1•furcyd•35m ago•0 comments

Pragtical 3.12 Adds an Opt-In SDL GPU Back End to a 50MB Code Editor

https://news.lavx.hu/article/pragtical-3-12-adds-an-opt-in-sdl-gpu-backend-to-a-50mb-code-editor
1•rd07•36m ago•0 comments

Show HN: Busy Door

https://joaquimrocha.com/busy-pixoo/
1•kimr•37m ago•0 comments

The Whitest Page on the Internet

https://hakluke.com/white
1•federico3i•37m ago•0 comments

Companies are making education policy

https://www.thehomescreen.org/p/companies-are-making-education-policy
1•flail•38m ago•0 comments

An Archive of Colour Gradients

https://phillips.shef.ac.uk/pub/cpt-city/
2•ashitlerferad•39m ago•0 comments

Are They Using AI?

https://aretheyusingai.vercel.app
1•blurayfin•43m ago•0 comments

Show HN: ChaosTree – A zero-dependency Java tree library (AVL,RBT,B-Tree,B+Tree)

https://github.com/Chaos-vy/ChaosTree
1•chaos_vy•44m ago•2 comments

CUDA Tile (cuTile) first working port in Java

https://github.com/beehive-lab/TornadoVM/pull/1083
1•birdculture•45m ago•0 comments

Rvvts – The RISC-V Vector Test Framework (V2)

https://github.com/ics-jku/RVVTS
1•fork-bomber•46m ago•0 comments

A Man Archiving Pirate Radio Station Kool FM

https://londonist.com/london/music/kool-fm-archives
2•rdmuser•47m ago•0 comments

Viète's Formula

https://en.wikipedia.org/wiki/Viète%27s_formula
1•vismit2000•47m ago•0 comments

Automated Capacity Testing for Kafka Consumers

https://medium.com/booking-com-development/how-we-built-automated-capacity-testing-for-kafka-cons...
1•theykk•48m ago•0 comments

XCancel service is suspended (again)

https://xcancel.com/x
2•shelfchair•49m ago•0 comments

Suno Genre Wheel

https://suno.com/labs/genre-wheel
1•hakkikonu•51m ago•0 comments

UK.gov begins killing off passwords for 23M users

https://www.theregister.com/security/2026/09/14/ukgov-begins-killing-off-passwords-for-23-million...
1•jjgreen•52m 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!