frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Childhood Computing

https://lilysthings.org/blog/childhood-computing/
1•i_lost_my_bagel•1m ago•0 comments

Is it still all about the people?

https://lisacrispin.com/2026/04/29/is-it-still-all-about-the-people/
1•adrianhoward•2m ago•0 comments

Misplaced Panic over AI Progress

https://garymarcus.substack.com/p/misplaced-panic-over-ai-progress
1•agluszak•9m ago•0 comments

Maryland citizens hit with $2B power grid upgrade for out-of-state AI

https://www.tomshardware.com/tech-industry/artificial-intelligence/maryland-citizens-slapped-with...
3•lemonberry•12m ago•0 comments

Ask HN: Which LLM are you using to evaluate your ideas?

1•Marius77•14m ago•0 comments

The impossible song we'll remember in 500 years [video]

https://www.youtube.com/watch?v=XLqhOEzpWyo
2•layer8•19m ago•0 comments

Freediving, Embodiment and Humanity

https://tracesofhumanity.org/freediving-embodiment-and-humanity/
1•nathanh•22m ago•0 comments

The Psychology of Choice in an Age of Abundance

https://medium.com/@sachin255701/the-psychology-of-choice-in-an-age-of-abundance-8843d4e49ce7
1•_day_dr3am3r_•23m ago•1 comments

Fluiq – LLM observability, evals and optimization in two lines of Python

https://getfluiq.com
1•SaurabhKumbhar•25m ago•0 comments

Show HN: Aura – Desktop AI Orchestration IDE with Planner/Worker Architecture

https://github.com/CarpseDeam/Aura-IDE
2•ConfusedData89•29m ago•0 comments

Jumping Spiders Shouldn't Be This Smart [video]

https://www.youtube.com/watch?v=kRQMOF5c2Z8
2•hermitcrab•30m ago•0 comments

Is this a bad moment for a math career?

https://mathoverflow.net/questions/486675/is-this-a-bad-moment-for-a-math-career
1•bananaflag•30m ago•0 comments

Ask HN: Will low quality AI customer support be the new normal?

3•0-bad-sectors•31m ago•1 comments

A NLM enhanced writers workbench

https://www.redwoodrhetorica.com/
1•homeonthemtn•34m ago•1 comments

Linux gaming is faster because Windows APIs are becoming Linux kernel features

https://www.xda-developers.com/linux-gaming-is-getting-faster-because-windows-apis-are-becoming-l...
2•haunter•35m ago•1 comments

Nuke All Routers

https://github.com/maxbrito500/esp32-c5-deauth
1•nunobrito•38m ago•0 comments

Forza Horizon 6 just leaked on Steam, letting pirates play it

https://www.neowin.net/news/looks-like-forza-horizon-6-just-leaked-on-steam-letting-pirates-play-...
4•bundie•42m ago•1 comments

Hair Maths: Curl Geometry and Braids [pdf]

https://tomrocksmaths.com/wp-content/uploads/2025/09/hair-maths-curl-geometry-and-braids-copy-3-i...
2•marysminefnuf•43m ago•0 comments

Low Frequencies

https://computer.rip/2026-05-09-extremely-low-frequencies.html
2•Sniffnoy•44m ago•1 comments

Droidian, a Phone OS for Patient People

https://theprivacydad.com/droidian-an-awesome-phone-os-for-patient-people-guest-post/
2•Brajeshwar•44m ago•0 comments

The AI That Took a Sunday Off

https://debarshibasak.github.io/readables/blogs/eu-ai-right.html
1•debarshri•47m ago•0 comments

Do Ten Times as Much

https://www.betonit.ai/p/do-ten-times-as-much
1•kristianp•50m ago•1 comments

Show HN: Hustler Bingo – a tiny bingo game about startup Twitter clichés

https://hustlerbingo.app
1•lackoftactics•53m ago•0 comments

sixos: a nix os without systemd [video]

https://media.ccc.de/v/38c3-sixos-a-nix-os-without-systemd
1•bmacho•53m ago•1 comments

Laptops all have built-in security tokens these days

https://ahelwer.ca/post/2026-05-08-builtin-u2f/
2•birdculture•55m ago•0 comments

Referer Reality

https://www.robinsloan.com/lab/referer/
2•tobr•57m ago•0 comments

TrackMoose, a music discovery tool that blends up to 100 artists

https://www.trackmoose.com
1•vikdean•1h ago•0 comments

I have build "Cursor for everything" desktop app

https://trydekaai.com/
1•arnurTogambayev•1h ago•1 comments

Show HN: Launch Party – a community for early-stage B2B SaaS founders

https://joinlaunchparty.com
2•superamped•1h ago•1 comments

Show HN: Miro-pdf v0.9.0 – Multi-page support

https://github.com/vincent-uden/miro
1•vincent-uden•1h 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!