frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Head of Defence Investment Agency to step down after one year in job

https://www.theglobeandmail.com/politics/article-doug-guzman-to-step-down-defence-investment-agen...
1•Teever•36s ago•0 comments

Ubisoft's FOR HONOR will block SteamOS / Linux players starting September 10

https://www.gamingonlinux.com/2026/09/ubisofts-for-honor-will-block-steamos-linux-on-september-10/
2•haunter•51s ago•0 comments

Missing Out on Neurodivergent Talent

https://journals.aom.org/doi/10.5465/amle.2025.0023.summary
1•rustoo•57s ago•0 comments

Show HN: I built a game where you land in Google Earth and walk around

https://crosscity.nieltenghu.com/
1•niel_hu•1m ago•0 comments

Libxml-rs – custodial native-Rust reimplementation of libxml2 and libxslt

https://github.com/infinityabundance/libxml-rs
1•infinityabundan•2m ago•0 comments

RISC-V Interpreter from the Future

https://abundance.build/blog/2026-08-31-risc-v-interpreter-from-the-future/
1•arto•3m ago•0 comments

A pervasive RT–qPCR artifact inflates RNA knockdown by RNA-targeting CRISPR

https://www.nature.com/articles/s41587-026-03291-1
1•sbulaev•3m ago•0 comments

Gyrovector Space

https://en.wikipedia.org/wiki/Gyrovector_space
1•binyu•3m ago•0 comments

Show HN: Tracking number formats, community reverse-engineered since 2010

https://trackingnumber.fyi
1•digitaltinfoil•3m ago•1 comments

Data races and the memory model in Go

https://func25.dev/posts/go-memory-visibility/
1•valyala•3m ago•0 comments

Show HN: Zero Shot – Energy Drink for You and Your AI Agents

1•Yudhisteer•4m ago•0 comments

Technology is the tool, not the goal

https://markw.dev/technology-goal/
1•speckx•4m ago•0 comments

AMD Acquires Taalas to Advance Compute Solutions

https://ir.amd.com/news-events/press-releases/detail/1296/amd-acquires-taalas-to-advance-compute-...
2•yogthos•4m ago•0 comments

Show HN: Selfship.ai – Surface and fix isues with your agentic applications 24x7

https://selfship.ai/
3•pranny•5m ago•0 comments

Free Business Builder

https://www.leapd.ai/tools/free-business-builder
1•joesanders21•5m ago•0 comments

Video shows first observed case of tool use in cattle

https://www.cnn.com/2026/01/19/science/cow-using-tools-study
1•thunderbong•6m ago•0 comments

EFF to Governor Newsom: Veto California's AB 1709

https://www.eff.org/deeplinks/2026/08/eff-gov-newsom-veto-californias-ab-1709
4•mdp2021•6m ago•0 comments

Fileregister: Tagging and reference layer for your files, in plain text

https://github.com/rhsev/fileregister
1•ingve•6m ago•0 comments

MacPhone: I Created the Hybrid Mac-iPhone Desktop-Handheld Apple Won't Make

https://spicysuya.micro.blog/2026/09/01/macphone-how-i-created-the.html
1•canuckintime•6m ago•0 comments

Epistemic Humility

https://en.wikipedia.org/wiki/Epistemic_humility
1•o4c•8m ago•0 comments

Ask HN: Freelancer? Seeking freelancer? (September 2026)

2•jon_north•8m ago•0 comments

Ask HN: Who is hiring? (September 2026)

5•whoishiring•9m ago•7 comments

Ask HN: Who wants to be hired? (September 2026)

4•whoishiring•9m ago•16 comments

A Small Telescope That Surprised Me

https://adfr.io/thoughts/20260831_a_small_telescope_that_surprised_me/
1•speckx•10m ago•0 comments

Gladys West, mathematician whose work paved the way for GPS, dies at 95

https://www.npr.org/2026/01/23/nx-s1-5685027/gladys-west-gps-mathematician
2•d_tr•12m ago•0 comments

High-Dimensional Sphere Packing and Error Correcting Codes

https://www.scientificamerican.com/blog/roots-of-unity/why-you-should-care-about-high-dimensional...
1•brandonb•13m ago•1 comments

Show HN: Slopyard – a textboard inspired gallery for vibecoded tools

https://slopyard.net/
1•yoz-y•13m ago•0 comments

You probably don't need Yocto, and that's fine

https://sigma-star.at/blog/2026/05/you-probably-dont-need-yocto-and-thats-fine/
1•Tomte•14m ago•0 comments

Can AI help crack interstellar travel?

https://www.thedeepview.com/articles/can-ai-crack-interstellar-travel
1•ilreb•14m ago•0 comments

We keep the world safe from AGI (humans). Let's do the same for AI

https://abranti.com/keep-the-world-safe-from-ai.html
1•abranti•14m 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!