frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bit Pixel

https://1bitstudio.app/pixel/
1•selimonder•13s ago•0 comments

Tracing Claude Tag, Anthropic's Slack Agent

https://docs.scorecard.io/intro/claude-tag-tracing
1•Rutledge•1m ago•0 comments

OpenAI's 700W Jalapeño ASIC outpaces 1,400W Nvidia flagship GPU

https://www.tomshardware.com/tech-industry/semiconductors/openai-says-its-jalapeno-chip-beats-nvi...
1•rbanffy•4m ago•0 comments

One Go binary, one YAML file, one SQLite database: I wrote my monitoring tool

https://rvier.fr/posts/why-i-wrote-my-own-monitoring-tool-EN
1•brvier•10m ago•0 comments

Claim your city's #1 spot

https://www.outbidhere.com
1•paulmbw•10m ago•1 comments

Valley of the Ants

https://en.wikipedia.org/wiki/Valley_of_the_ants
1•marysminefnuf•11m ago•0 comments

Ripping Off the Hey.com Band-Aid

https://kylemcgough.com/blogs/ripping-off-the-heycom-band-aid
8•sosodev•14m ago•0 comments

Python's pre-declared constants are kinda weird

https://sebsite.pw/w/20260801-pythonconstants.html
1•rbanffy•15m ago•0 comments

Same net, same seed – 100% vs. 50% on unseen magnitudes

https://structured-intelligence.grok.me
1•jarrodseth•16m ago•0 comments

Making Atuin sync 32x faster with packfiles

https://blog.atuin.sh/making-atuin-sync-32x-faster-with-packfiles/
2•sea-gold•16m ago•0 comments

Show HN: Flinch – a Dutch auction for one ad slot that never ends

https://flinch.auction/
1•nadermx•18m ago•0 comments

Show HN: Graphlib 3.1 – the C++ 23, header only solution to directional graphs

https://github.com/RANDOMFNP/Graphlib
1•RandomFNP•19m ago•0 comments

Ask HN: Is "3D as software" about to undergo a Cambrian Explosion?

2•baigy•21m ago•0 comments

On the gradual formation of thoughts in the process of speech (1805) [pdf]

https://odradeksjourney.wordpress.com/wp-content/uploads/2017/11/on-the-gradual-formation-of-thou...
1•rzk•22m ago•0 comments

Uniform Financial Institutions Rating System

https://www.federalregister.gov/documents/2026/05/19/2026-09944/uniform-financial-institutions-ra...
1•petethomas•24m ago•0 comments

The Second Age of Melancholy

https://buildingthenews.substack.com/p/the-second-age-of-melancholy
1•OrrH•25m ago•0 comments

Show HN: Codex / Claude Code harness for Java high performance improvements

https://registry.modelcontextprotocol.io/v0.1/servers/io.github.JAIPilot%2Fjaipilot/versions/6.4.2
3•surajkrajan•30m ago•0 comments

Show HN: Ecdeos – P2P Web/Native Distributed OS on Entity Core Protocol

https://ecdeos.org
1•billatbillslab•34m ago•0 comments

AntiNCII – hashing to combat intimate image abuse without file uploads

https://antincii.org/
2•ndf00•35m ago•1 comments

XCancel also down, at least for time being

9•orange999•35m ago•1 comments

OKF Isn't Replacing the Vector Database. It's Freeing It

https://medium.com/@majid.fekri/okf-isnt-replacing-the-vector-database-it-s-freeing-it-3cc64ab47fa3
2•supportm•35m ago•0 comments

The service XCancel is stopped until further notice

https://xcancel.com
5•bio-s•36m ago•3 comments

Burnout, Loneliness, and Why High-Earning Tech Pros Fail at Life Management

5•YuriiWoods•37m ago•1 comments

Turn off Claude Code's Memory [video]

https://www.youtube.com/watch?v=Jf54k7tFeEc
2•__vivek•38m ago•1 comments

Grokipedia Stopped Reviewing Edits in April. It Didn't Tell Anyone

https://www.lawfaremedia.org/article/grokipedia-stopped-reviewing-edits-in-april.-it-didn-t-tell-...
6•mellosouls•39m ago•0 comments

How Big Should a Terraform Root Module Be?

https://newsletter.masterpoint.io/p/how-big-should-a-terraform-root-module-be
1•mooreds•39m ago•0 comments

Open SOTA Registry

https://www.codesota.com
1•devy•41m ago•0 comments

Treasury bonds are becoming less special

https://www.axios.com/2026/08/25/treasury-securities-bonds-lustig
8•toomuchtodo•42m ago•0 comments

Austerity denial and the mystery of Britain's shrunken state

https://www.ft.com/content/910288e8-5ad1-4f09-90fb-36c3efe275e0
2•JumpCrisscross•45m ago•0 comments

A Walkable ASCII Cyberpunk City in One HTML File [video]

https://www.youtube.com/watch?v=3YtygAx_C6A
1•DamnInteresting•45m 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!