frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The secrets of the shinkansen

https://www.worksinprogress.news/p/the-secret-behind-japans-railways
1•herbertl•13s ago•0 comments

Organics and Mechanics

https://randsinrepose.com/archives/organics-and-mechanics/
1•rzk•19s ago•0 comments

'Our historical condition is a peculiar mixture of omniscience and impotence'

https://www.lemonde.fr/en/opinion/article/2026/04/05/will-self-our-historical-condition-is-a-pecu...
1•speckx•1m ago•0 comments

Memelang: Terse SQL for LLM Generation

https://memelang.net/10/
1•bri-holt•2m ago•0 comments

Living Without America

https://statusq.org/archives/2026/01/07/13491/
1•noir_lord•2m ago•0 comments

Claude Code v2.1.100 silently adds ~20k invisible tokens to every request

https://twitter.com/om_patel5/status/2043524173016727639
2•giancarlostoro•2m ago•0 comments

Show HN: How to Use Google's Extreme AI Compression with Ollama and Llama.cpp

1•anju-kushwaha•3m ago•0 comments

Fractal Leadership

https://medium.com/@masonfmatthews/fractal-leadership-ff216b861fec
1•rzk•3m ago•0 comments

Show HN: Lovinghate – Share what you love and hate

https://lovinghate.com/
1•goshua•7m ago•0 comments

Percussive maintenance, planned obsolescence, and other PC myths

https://www.howtogeek.com/we-laughed-at-the-warningsbut-these-5-old-pc-myths-turned-out-to-be-com...
1•dxs•8m ago•0 comments

Microsoft isn't removing Copilot from Windows 11, it's just renaming it

https://www.neowin.net/opinions/microsoft-isnt-removing-copilot-from-windows-11-its-just-renaming...
2•bundie•11m ago•0 comments

What Is Pura Vida Lifestyle, Really?

https://johnquam.substack.com/p/what-is-pura-vida-lifestyle-really
1•headmonkey•11m ago•0 comments

Kondi-chat (open cursor) – multi-model AI coding CLI with intelligent routing

https://github.com/thisPointOn/kondi-chat
1•thispointon•13m ago•1 comments

Did Neuralink make the wrong bet?

https://www.theverge.com/tech/910834/neuralink-bcis-bet
3•Brajeshwar•16m ago•1 comments

Rental Harmony

https://cynablog.substack.com/p/rental-harmony
2•surprisetalk•17m ago•0 comments

Thick Coins by Theodore Nichols

https://thick-coins.net/
2•surprisetalk•17m ago•0 comments

The Utopia of the Family Computer

https://mudmapmagazine.com/the-utopia-of-the-family-computer/
2•surprisetalk•17m ago•0 comments

The Long-Term Effects of Grade Inflation

https://drive.google.com/file/d/1CcS_caQP701I92FeB6ZYlT1C7hjnFEWo/view
1•surprisetalk•18m ago•0 comments

Tech exec pitches $500k exit tax for educated Canadians

https://nationalpost.com/opinion/terry-newman-tech-exec-pitches-liberal-convention-on-500k-exit-t...
3•dj_rock•18m ago•1 comments

Show HN: Remy, an AI agent that compiles annotated Markdown into full-stack apps

https://remy.msagent.ai/
3•sthielen•18m ago•0 comments

Heerich.js – 3D voxel scenes rendered to SVG

https://meodai.github.io/heerich/
2•knuckleheads•18m ago•0 comments

Durable Objects in Dynamic Workers: Give each AI-generated app its own database

https://blog.cloudflare.com/durable-object-facets-dynamic-workers/
2•salkahfi•19m ago•0 comments

Tell HN: Facebook's reasons to disable an account is a blackbox

3•bprasanna•19m ago•1 comments

A brief history of Lab Notebooks

https://press.asimov.com/articles/lab-notebooks
2•the-mitr•19m ago•0 comments

Builds Just Got Faster

https://www.netlify.com/blog/your-builds-just-got-faster/
2•sausagefeet•20m ago•0 comments

An extension for DuckDB, which captures lineage events for executed queries

https://github.com/ilum-cloud/duck_lineage
2•tanelpoder•21m ago•0 comments

US appeals court declares 158-year-old home distilling ban unconstitutional

https://nypost.com/2026/04/11/us-news/us-appeals-court-declares-158-year-old-home-distilling-ban-...
14•t-3•21m ago•1 comments

Chromebook Remorse: Tech Backlash at Schools Extends Beyond Phones

https://www.nytimes.com/2026/03/29/technology/chromebook-remorse-kansas-school-laptops.html
2•chirau•22m ago•1 comments

Meta Expected to Unseat Google as Largest Digital-Ad Player

https://www.wsj.com/business/media/meta-expected-to-unseat-google-as-worlds-largest-digital-ad-pl...
3•tzury•24m ago•0 comments

Show HN: Is Claude Nerfed Today?

https://isitnerfed.vercel.app
3•MichaelYuhe•26m ago•2 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•11mo ago

Comments

semihs•11mo 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_•11mo 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•11mo 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_•11mo ago
That sounds great!