frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Curl Performance Tests

https://curl.se/perf/
1•theanonymousone•1m ago•0 comments

US Army secretary resigns after months of tension

https://www.bbc.com/news/articles/czjz31dk1xmo
1•tartoran•2m ago•0 comments

Tim Cook's full memo to Apple employees on his last day as CEO

https://9to5mac.com/2026/08/31/read-tim-cooks-full-memo-to-apple-employees-on-his-last-day-as-ceo/
1•soheilpro•3m ago•0 comments

Apple's New CEO Has One Job

https://www.durableadvantage.com/p/apples-new-ceo-has-one-job
1•techdemic•10m ago•0 comments

Ex-Congressman George Santos Receives Kalshi's First-Ever Lifetime Ban

https://www.wsj.com/business/ex-congressman-george-santos-receives-kalshis-first-ever-lifetime-ba...
2•higginsniggins•15m ago•0 comments

Show HN: Deslop, a skill that turns legalese and AI slop into plain English

https://github.com/fayerman-source/deslop/
1•fayerman•19m ago•0 comments

"Dagon" by H. P. Lovecraft

https://www.hplovecraft.com/writings/texts/fiction/d.aspx
4•thunderbong•25m ago•0 comments

Sony brings free TV to the PS5

https://www.theverge.com/games/987000/sony-brings-free-tv-to-the-ps5
2•ramn7•26m ago•0 comments

Hotline Telegram Support and Sales Hub (hotline.tg)

1•hotline•29m ago•0 comments

The RSS Feed Got a Robot Assistant

https://www.pleasehustleresponsibly.com/p/the-rss-feed-got-a-robot-assistant
1•angelahollowell•32m ago•0 comments

Wendell Berry has died, age 92

https://www.nytimes.com/2026/08/31/us/wendell-berry-dead.html
1•Curiositry•33m ago•1 comments

Kale: A Transformation-Safe Spreadsheet System

https://arxiv.org/abs/2608.26345
1•zdw•41m ago•0 comments

Weird Little Guys of FOSS

https://drewdevault.com/weird-guys/
1•airhangerf15•41m ago•0 comments

Dan Driscoll's Parting Shot

https://www.theatlantic.com/national-security/2026/08/driscoll-hegseth-military-resignation/688479/
1•Jtsummers•42m ago•0 comments

Florida revokes permits for license plate readers on state highways

https://www.wusf.org/transportation/2026-08-31/fdot-revokes-permits-for-flock-cameras-installed-o...
4•ilamont•45m ago•0 comments

Backsliding: On the Paradox of Willpower

https://harpers.org/archive/2026/07/backsliding-meghan-ogieblyn-willpower/
1•Anon84•47m ago•0 comments

Miles v0.1: Production-level Post-training

https://www.lmsys.org/blog/2026-08-18-miles-v0-1/
1•gmays•47m ago•0 comments

Claude Red Bar (visual and audible notifier of task completion)

https://github.com/gregsramblings/claude-red-bar
1•gw5815•49m ago•2 comments

DoltLite: A SQLite fork with Git-style version control, built with 2k agent PRs

https://www.dolthub.com/blog/2026-08-31-doltlite-beta/
4•lbw1215•58m ago•0 comments

Icelandic voters reject a resumption of EU membership negotiations

https://www.euronews.com/my-europe/2026/08/31/icelands-no-vote-deals-a-blow-to-brussels-security-...
2•delichon•1h ago•2 comments

Show HN: I rebuilt tank game with new style

https://www.battle-tank.com/
1•dutay05•1h ago•0 comments

Show HN: Chaosword – A Crossword?

https://chaosword.com
1•ghosts_•1h ago•0 comments

Breaking down Amazon's mega dropdown (2013)

https://bjk5.com/post/44698559168/breaking-down-amazons-mega-dropdown
1•TheAceOfHearts•1h ago•0 comments

Kubernetes v1.37: Pod Certificates and Cluster Trust Bundles

https://kubernetes.io/blog/2026/08/28/kubernetes-v1-37-pod-certificates-and-cluster-trust-bundles/
1•ahmedtd•1h ago•0 comments

Retatrutide – people risk the gray market for the newest weight-loss drug

https://www.theguardian.com/science/2026/aug/31/retatrutide-weight-loss-drug-gray-market
2•andsoitis•1h ago•0 comments

The Big Leak (1987)

https://www.americanheritage.com/big-leak
1•jhide•1h ago•0 comments

2004 RuneScape fit a multiplayer RPG into 56k dial-up

https://jkm.dev/posts/how-2004-runescape-fit-a-multiplayer-rpg-into-56k-dialup/
11•fagnerbrack•1h ago•2 comments

AWS Activate Credits

1•m4sk1994•1h ago•0 comments

Deadpan Photography: Enjoying the Pretence

https://photoni.st/index.php/2026/07/12/deadpan-photography-enjoying-the-pretence/
1•NaOH•1h ago•0 comments

Papercut SMTP – The Simple Desktop Email Server

https://github.com/ChangemakerStudios/Papercut-SMTP
1•l8rlump•1h 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!