frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Rise of China's One-Person Companies

https://www.sixthtone.com/news/1018567
1•andrewstetsenko•50s ago•0 comments

10k Fraudulent Credentials Seized: Indian Fraud Credential Ring Uncovered

https://dallasexpress.com/national/h-1b-fraud-claims-back-in-spotlight-after-fox-segment-on-fake-...
2•joshcsimmons•4m ago•0 comments

Ask HN: Most impactful podcast episodes so far this year?

2•chistev•7m ago•0 comments

My SSN was exposed in a breach at Columbia–a school I have no connection with

https://arstechnica.com/tech-policy/2026/06/my-ssn-was-exposed-in-a-breach-at-columbia-a-school-i...
1•duxup•9m ago•0 comments

The curious case of low-protein diets

https://knowablemagazine.org/content/article/living-world/2026/low-protein-diet-animals-live-longer
2•curmudgeon22•11m ago•0 comments

New power banks released by BMX with safer semi-solid-state batteries

https://hardware.slashdot.org/story/26/06/06/1932216/new-power-banks-released-by-bmx-with-safer-s...
1•MilnerRoute•11m ago•0 comments

Leiden Declaration on Artificial Intelligence and Mathematics

https://www.lms.ac.uk/news/leiden-declaration-on-ai-and-mathematics
2•_____k•12m ago•0 comments

The AI coding optimized for the part of engineering that hurt the least

https://www.ardel.io/blog/the-3am-problem
1•srbsa•12m ago•0 comments

Beekeeper Watching the Blooms

https://sassafrasbeefarm.wordpress.com/2026/01/03/beekeeper-watching-the-blooms/
1•jruohonen•12m ago•0 comments

Finish the Underside

https://steadypair.com/blog/finish-the-underside/
2•asoli•14m ago•0 comments

What Works for Dating in 2026

https://julienreszka.com/blog/what-actually-works-for-dating-in-2026/
2•julienreszka•14m ago•0 comments

Findnix.eu – Find alles, speichere Nix

https://findnix.eu
1•phppower•15m ago•1 comments

Building from Zero After Addiction, Prison, and a Felony

https://gavinray97.github.io/blog/building-from-zero-after-addiction-prison-felony
1•gavinray•15m ago•0 comments

Show HN: Typol – Static typing layer for Polars

https://github.com/pdtpartners/typol
1•mrrpdt•15m ago•0 comments

Unfurl – Freeing the Internet from Big Cloud

https://github.com/onecommons/unfurl
1•sigalor•19m ago•1 comments

Tire wear particles collecting device for automobiles

https://thetyrecollective.com
1•num42•20m ago•1 comments

Home Security and AI

1•garypearce•20m ago•0 comments

A Rejection on the Eve of Launch (2024)

https://jonofyi.substack.com/p/a-rejection-on-the-eve-of-launch
1•xk3•25m ago•0 comments

Tell HN: Stripe ToS demands biometrics, freezes payments until given

4•cuz-reasons•27m ago•0 comments

Bumblebees can solve problems like chimps and elephants

https://www.npr.org/2026/06/07/nx-s1-5846947/bumblebees-problem-solving-research
2•marojejian•27m ago•1 comments

My automated doubt development process

https://www.alexself.dev/blog/automated-doubt
4•aself101•31m ago•1 comments

Seattle unemployed worker stretches $690 per week

https://www.seattletimes.com/business/seattle-unemployed-worker-stretches-690-per-week-affording-...
1•petethomas•31m ago•0 comments

Where Do F1 Drivers Live? The Monaco Effect

https://www.kymillman.com/blog/where-do-f1-drivers-live-the-monaco-effect/
1•thunderbong•32m ago•0 comments

Making Peace with Your Unlived Dreams

https://nik.art/making-peace-with-your-unlived-dreams/
1•herbertl•33m ago•0 comments

Uni president told graduates to 'end themselves'

https://xcancel.com/TaiwanSpecial/status/2063099174019874882
2•bsgada•33m ago•1 comments

Memory safety is a matter of life and death

https://joshlf.com/posts/memory-safety-life-and-death/
1•birdculture•33m ago•0 comments

The complete IPv4 address space, mapped

https://worldip.io/
2•theanonymousone•34m ago•0 comments

A newly discovered organelle could help reduce cow methane emissions

https://phys.org/news/2026-05-newly-organelle-cow-methane-emissions.html
1•PaulHoule•36m ago•0 comments

Show HN: Axiomax – Cryptographic proof of AI inference carbon footprint

https://axiomaxllc.com
2•axiomaxllc•39m ago•0 comments

Not by AI

https://notbyai.fyi/
2•lopespm•39m 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!