frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Wirth's Law

https://en.wikipedia.org/wiki/Wirth%27s_law
1•RinTohsaka•4m ago•0 comments

Designing Software for Software Factories

https://blog.sshh.io/p/designing-software-for-software-factories
1•sshh12•4m ago•0 comments

The Ruby JRuby Was Built to Run

https://intertwingly.net/blog/2026/06/11/The-Ruby-JRuby-Was-Built-to-Run.html
1•mooreds•7m ago•0 comments

Rails: The Sharp Parts. Lock Is Not a Mutex

https://baweaver.com/writing/2026/06/05/rails-sharp-parts-lock-is-not-a-mutex/
1•mooreds•7m ago•0 comments

Timeline of HN

https://news.ycombinator.com/threads?id=ChrisArchitect
3•razor-thin•9m ago•0 comments

LLM Token Price Index

https://tokenpriceindex.com
1•zurtri•10m ago•1 comments

Building a Functional Lego Typewriter [video]

https://www.youtube.com/watch?v=ZIWTSkCVxjk
1•vinnyglennon•11m ago•0 comments

Battery recycling boom exposes schoolchildren to lead

https://www.ft.com/content/19beeed4-8c99-4de3-a163-9301210634ad
1•petethomas•13m ago•0 comments

VTubeMe

https://vtubeme.com
1•alekcac•15m ago•1 comments

Show HN: Pebble, an open-source alternative to Minecraft: Java Edition

https://github.com/thebriangao/pebble
1•briangao•17m ago•1 comments

Is the Twenty-First Century a Creative Void?

https://yalereview.org/article/audrey-wollen-david-marx-blank-space
1•tintinnabula•17m ago•0 comments

Show HN: How to prevent spam and disposable signups

https://emailverify.se/
1•the_plug•18m ago•0 comments

Amazon security research reportedly led to the White House's Anthropic Fable ban

https://www.theverge.com/ai-artificial-intelligence/949601/amazon-anthropic-fablemythos-governmen...
2•kikibobo69•18m ago•0 comments

W.H. Auden and James Schuyler in life and literature

https://hedgehogreview.com/web-features/thr/posts/companions-on-parnassus
2•Caiero•24m ago•0 comments

Bubbles.town – posts aggregated from 5007 independent, personal blogs

https://bubbles.town/
2•Curiositry•25m ago•0 comments

Rio 3.5 Open 397B – from Rio de Janeiro's city government

https://huggingface.co/prefeitura-rio/Rio-3.5-Open-397B
2•mcyc•31m ago•1 comments

Frontier: Elite 2 intro (Roland SCC-1) 1993 PC DOS [video]

https://www.youtube.com/watch?v=NzveVFilqMU
1•doener•33m ago•0 comments

Their friends are making $100M. Everyone else is wondering how to catch up

https://www.washingtonpost.com/technology/2026/06/13/ipo-boom-mints-thousands-new-millionaires-si...
2•edward•33m ago•4 comments

US orders Anthropic to disable AI models for all foreign nationals

https://www.aljazeera.com/news/2026/6/13/us-orders-anthropic-to-disable-ai-models-for-all-foreign...
3•untitled-now•36m ago•1 comments

What every coder should know about Gamma Correction

https://blog.johnnovak.net/2016/09/21/what-every-coder-should-know-about-gamma/
1•sph•37m ago•0 comments

Show HN: Awsmap – query your AWS inventory with SQL or plain English, offline

https://github.com/TocConsulting/awsmap
1•CloudHackerFr•41m ago•1 comments

Founders, your tech startup is not going public

https://sudbh11.substack.com/p/founders-your-software-company-is
3•sudbh11•45m ago•1 comments

Show HN: Bye-wk – Hide World Cup news from your feed

https://github.com/Braitenberg/bye-wk
1•kjex0•48m ago•0 comments

Designing a Symbol Layer

https://getreuer.info/posts/keyboards/symbol-layer/index.html
1•firephox•50m ago•0 comments

Is Privacy the Latest Luxury?

https://www.ft.com/content/185a3419-a760-468b-b71e-59095ab874e2
3•petethomas•50m ago•0 comments

Ask HN: How to avoid stressing yourself because of a micromanager?

3•ciwolex•51m ago•1 comments

Run your laptop from your couch – couchpilot

https://github.com/zkalykov/couchpilot
2•zkalykov•52m ago•1 comments

The Geomblog: The "Fable" of Anthropic and the USG

http://blog.geomblog.org/2026/06/the-fable-of-anthropic-and-usg.html
1•donohoe•52m ago•1 comments

Visa Vulnerability Agentic Harness (built with Mythos)

https://github.com/visa/visa-vulnerability-agentic-harness
1•binyu•56m ago•0 comments

Cambrian Explosion: When Complexity Met Complexity

https://medium.com/@rbridges_40571/the-cambrian-explosion-when-complexity-met-complexity-76d56f0f...
1•cleansingfire•56m 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!