frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Opus 5 on Vending-Bench: Once Again the Best Capitalist, Once Again Misaligned

https://andonlabs.com/blog/opus-5-vending-bench
1•axbac•49s ago•0 comments

"Cloudflare OS" demo (00:55:34) – internal tool inside Cloudflare

https://customer-eq7kiuol0tk9chox.cloudflarestream.com/2608891704d21cfbd509b2b4f68f41fc/watch?
1•wenbin•1m ago•0 comments

AntGroup releases Ling 3.0 Flash MoE model

https://twitter.com/AntLingAGI/status/2080351022028095681
1•potus_kushner•2m ago•0 comments

Axiom Foundation launches to publish the rules as open, verifiable code

https://axiom.org
1•axbac•2m ago•0 comments

Opening Keynote by Chinese President Xi Jinping at 2026 World AI Conference

https://english.www.gov.cn/news/202607/17/content_WS6a5a1172c6d00ca5f9a0c46b.html
1•mooreds•3m ago•0 comments

Ads-STE100: Simplified Technical English

https://en.wikipedia.org/wiki/Simplified_Technical_English
2•handfuloflight•3m ago•0 comments

Microspeak: Double-Click and Drill Down

https://devblogs.microsoft.com/oldnewthing/20260714-00/?p=112532
1•ibobev•3m ago•0 comments

Florida's Fix for Insurance Crisis Puts More Risk on Homeowners

https://www.bloomberg.com/news/features/2026-07-29/florida-s-fix-for-property-insurance-crisis-pu...
1•toomuchtodo•3m ago•1 comments

Turning a Dumb AC Unit Smart (Without Losing My Security Deposit)

https://prilik.com/blog/post/automating-ac-nyc/
2•austinallegro•4m ago•0 comments

Why has the display control panel pointer truncation bug gone unfixed for long?

https://devblogs.microsoft.com/oldnewthing/20260717-00/?p=112541
1•ibobev•4m ago•0 comments

The Evolution of Astronaut Food [video]

https://www.youtube.com/watch?v=9WHfNcAF0Cw
1•gmays•4m ago•0 comments

Making an agile version of a Windows Runtime delegate in C++/WinRT, part 7

https://devblogs.microsoft.com/oldnewthing/20260728-00/?p=112568
1•ibobev•5m ago•0 comments

OpenAI's First Devices: Speaker, Smartphone, and More

https://www.macrumors.com/2026/07/28/openai-first-devices/
1•mgh2•6m ago•0 comments

1877–1878 El Niño event

https://en.wikipedia.org/wiki/1877%E2%80%931878_El_Ni%C3%B1o_event
2•greesil•7m ago•0 comments

Agent in the Middle

https://howitships.substack.com/p/agent-in-the-middle
6•marince00•8m ago•0 comments

Managing Edge Resources Scale a Peer-to-Peer CDN for On-Demand Video Streaming

https://dl.acm.org/doi/10.1145/3816021
1•DemiGuru•10m ago•1 comments

Origin of Life

https://www.molevol.hhu.de/animationsfilme
1•Tomte•10m ago•0 comments

Wired's Kevin Kelly on Why AI Is a 50-Year Overnight Success [video]

https://www.youtube.com/watch?v=s4Ld3ZkM0Do
1•thm•12m ago•0 comments

Show HN: Reading Assistant for Physical Books

https://tryreader.app/
1•roshangill•13m ago•0 comments

Rural America's Maternal-Health Crisis Is About to Get Worse

https://www.theatlantic.com/ideas/2026/07/giving-birth-rural-hospitals-danger-mortality/688091/
1•jonah•13m ago•1 comments

Reaping the Whirlwind – Inside the Potomac River Midair Collision

https://admiralcloudberg.medium.com/reaping-the-whirlwind-inside-the-potomac-river-midair-collisi...
1•mlex•13m ago•0 comments

CDK-SOPS-Secrets: Sync SOPS-encrypted files to AWS Secrets Manager

https://github.com/dbsystel/cdk-sops-secrets
1•mxmehl•14m ago•0 comments

The future belongs to AI maniacs

https://marginalrevolution.com/marginalrevolution/2026/07/the-future-belongs-to-ai-maniacs.html
1•kaycebasques•14m ago•0 comments

Grok Voice Think Fast 2.0

https://twitter.com/spacexai/status/2082529280341553209
1•logickkk1•15m ago•0 comments

Parasitic computing with ICMP: making routers do arithmetic

https://anagogistis.com/posts/hopsum/
2•anagogistis•16m ago•0 comments

One Successful Agent Run Proves Almost Nothing

https://gptcode.dev/blog/2026-07-29-one-successful-agent-run-proves-almost-nothing
1•jadercorrea•16m ago•0 comments

Show HN: Ship – The operating system for agentic engineering

https://letsship.ai
2•onder_ceylan•16m ago•0 comments

Enshittification Relies on Broken Economic Math

https://www.hamiltonnolan.com/p/enshittification-relies-on-broken
1•speckx•16m ago•0 comments

Show HN: Dreeve, a self-hosted dashboard for your sports and fitness data

https://github.com/dreeveapp/dreeve
2•frogfuhrer•17m ago•0 comments

Ask HN: High conversion landing page Template?

1•julienreszka•18m 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!