frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

City-wise comparison of Bribes across India – bribes.fyi

https://bribes.fyi/cities
1•neverenderr•33s ago•0 comments

Kimi K3 Built the Game. I Still Had to Play It

https://www.drjoshcsimmons.com/writing/kimi-k3-built-the-game-i-still-had-to-play-it
1•joshcsimmons•45s ago•0 comments

The hallmarks of protein and amino acid restriction in aging and longevity

https://www.cell.com/cell-press-blue/fulltext/S3051-3839(26)00077-0
1•simonebrunozzi•3m ago•0 comments

Sure mate, buy me a bloody coffee

https://peateasea.de/sure-mate-buy-me-a-bloody-coffee/
1•speckx•6m ago•0 comments

The AI Bailout Could Be Baked into the AI Bubble

https://prospect.org/2026/08/03/ai-bailout-could-be-baked-into-bubble-private-equity-life-insurer...
2•Ambolia•6m ago•0 comments

Rust Project goals 2026: Reflection and Comptime

https://github.com/rust-lang/rust-project-goals/blob/main/src/2026/reflection-and-comptime.md
1•Ygg2•6m ago•1 comments

How Many People Are in Space Right Now

https://www.howmanypeopleareinspacerightnow.com/
1•EndXA•7m ago•0 comments

"Shock from Jensen Huang's Bubble Will Be Severe"

https://news.sbs.co.kr/english/article.do?news_id=N1008688017
2•mapping365•8m ago•0 comments

Why Everything Is Getting Louder

https://www.theatlantic.com/magazine/archive/2019/11/the-end-of-silence/598366/
1•bookofjoe•9m ago•1 comments

SEC Semi-Annual Reporting Proposal Tracker

https://tzachizach.github.io/sec-semi-annual-proposal-tracker/letters.html
1•petethomas•9m ago•0 comments

HedgeHog: The new standard in backgammon analysis

https://hedgehog-bg.com/frontpage
1•twright•10m ago•0 comments

Games of FIFA World Cup 2026

https://siddhesh.substack.com/p/wc26
1•weekendvampire•10m ago•0 comments

Wall Street's bulls are starting to admit the earnings bubble is real

https://fortune.com/2026/08/03/60-40-investing-strategy-broken-earnings-bubble-big-tech-goldman-a...
1•mapping365•10m ago•0 comments

Code, craft, and the making of nested folders

https://www.figma.com/blog/code-craft-and-the-making-of-nested-folders/
1•handfuloflight•14m ago•0 comments

What Trump's latest slump means for the midterms

https://www.natesilver.net/p/what-trumps-latest-slump-means-for
1•7777777phil•17m ago•0 comments

Show HN: Open-source book format for instant translations and Android app

https://tbook.dev/
1•adubovskoy•17m ago•1 comments

Two Have Died in the Cyclospora Outbreak. The Fifty-State Count Is Now 21,913

https://www.marlerblog.com/case-news/two-people-have-died-in-the-cyclospora-outbreak-the-fifty-st...
1•speckx•17m ago•0 comments

Set Theory Symbols

https://www.rapidtables.com/math/symbols/Set_Symbols.html
1•marysminefnuf•21m ago•0 comments

Show HN: On the Dot – a timing game where the stopwatch vanishes after 1.5s

https://hitthedot.app/
1•Aditya_Tickoo•23m ago•0 comments

The Emerging Market for Intelligence- How Firms Buy and Sell AI [PDF]

https://pubs.aeaweb.org/doi/pdfplus/10.1257/jep.20261506
1•malshe•23m ago•0 comments

AI system Locus posttrains a model better than Qwen3

https://twitter.com/intology/status/2084319121332965804
1•yuchiz•23m ago•0 comments

Adding Go's Defer to the TypeScript Compiler

https://healeycodes.com/adding-defer-to-the-typescript-compiler
1•ibobev•25m ago•0 comments

Ryg_rans Is Not a Library

https://fgiesen.wordpress.com/2026/08/03/ryg_rans-is-not-a-library/
2•ibobev•25m ago•0 comments

ZX Spectrum System Tour: Sound

https://bumbershootsoft.wordpress.com/2026/08/01/zx-spectrum-system-tour-sound/
2•ibobev•25m ago•0 comments

Show HN: Educational Options Calculator

https://options.olelohonua.com/
1•rbrownrw8•27m ago•1 comments

Show HN: Java MultiTool – How I Replaced 6 browser tabs with a Single Program

https://github.com/ShiningPr1sm/JavaMultiTool
1•shiningpr0xsm•27m ago•0 comments

The Nudge Unit

https://www.pimlicojournal.co.uk/p/inside-the-nudge-unit
2•like_any_other•28m ago•1 comments

The UK is still trying to force an iCloud backdoor

https://9to5mac.com/2026/08/03/apple-launches-second-legal-challenge-to-uk-icloud-backdoor-order-...
2•BlueBerry2001•28m ago•0 comments

Show HN: I am selling my product launch platform LaunchDaddy

1•alizaid•28m ago•0 comments

ReMarkable Paper Pro Move Running Android 12

https://www.reddit.com/r/RemarkableTablet/comments/1v9jbdf/i_got_android_12_running_locally_on_a_...
2•rvz•31m ago•0 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!