frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Production AI Stack: A Reference Architecture for Real-Time AI Systems

https://www.moss.dev/blog/the-production-ai-stack
1•srimalireddi•1m ago•0 comments

Does anyone run Postgres without PgBouncer?

https://brandur.org/fragments/postgres-without-pgbouncer
1•abelanger•4m ago•0 comments

University of Michigan won't use letter grades for some freshmen next fall

https://www.npr.org/2026/08/12/nx-s1-5928197/university-michigan-freshmen-letter-grades-pilot-fal...
1•geox•5m ago•0 comments

Lakers sold to Josh Kushner and Bob Iger for record-breaking $12.5B

https://sports.yahoo.com/nba/breaking-news/article/lakers-sold-to-josh-kushner-and-bob-iger-for-r...
2•hbcondo714•6m ago•0 comments

The Google executive moves that led to its big AI reshuffle

https://www.reuters.com/world/inside-google-executive-moves-that-led-its-big-ai-reshuffle-2026-08...
2•TechTechTech•11m ago•0 comments

Cold start to PR in 4 hours

https://designshippers.com/work/openreplay-dashboard.html
1•krm01•13m ago•0 comments

Show HN: Tried some experiments with architecture for Long term memory for LLM

https://github.com/faisalhussain-devs/MindCache/tree/collapsed_tree
1•Faisal9876•14m ago•0 comments

I rebuilt my launch platform's SEO in a week. DR went 3 → 30

https://liftoapp.com/
1•riyadbkhsh•14m ago•0 comments

Operations Transformation Strategist

https://torre.ai/post/Yd6p37DW-qvid-talent-solutions-operations-transformation-strategist
1•CathereneNganga•14m ago•0 comments

Breaking the WAL

https://antithesis.com/blog/2026/wal-reset-bug/
2•wwilson•17m ago•0 comments

Best Current Practice for Security of Cross-Device Flows

https://datatracker.ietf.org/doc/rfc10027/
1•mooreds•17m ago•0 comments

Energy Startup Raises $750M for Rust-Powered Batteries

https://www.wsj.com/business/energy-oil/energy-startup-raises-750-million-for-rust-powered-batter...
1•Saline9515•17m ago•0 comments

USB sticks missing results from the Milwaukee primary election

https://www.wisn.com/article/human-error-forces-delay-in-milwaukee-primary-election-results/73409614
2•throw7•19m ago•0 comments

Full red-teaming test ling 3.0 tiny AI. 123-class battery (391 completed records

https://lateos.ai/ling-3.0-tiny-research/
1•leochong•19m ago•0 comments

The Foundations of a Mobile Platform

https://www.scottberrevoets.com/2026/08/11/the-foundations-of-a-mobile-platform/
1•b00merang•20m ago•0 comments

Micro-Hook – Zero-dependency local webhook inspector

https://github.com/nsrht/micro-hook
1•nsrht•20m ago•0 comments

Lawsuit seeks to ban Trump Media from charging for early access to posts

https://apnews.com/article/trump-media-lawsuit-truth-social-access-wall-street-traders-7f057fd1db...
3•thm•24m ago•0 comments

The poor country with all the money

https://cuencahighlife.com/the-poor-country-with-all-the-money/
2•dxs•29m ago•0 comments

Migration fatigue, and how LLMs help us avoid it

https://riverqueue.com/blog/migration-fatigue
3•brandur•29m ago•0 comments

Hurricanes didn't care about a super El Niño

https://weather.com/2026/08/12/storms/hurricane/hurricanes-didnt-care-super-el-nino
1•1970-01-01•31m ago•0 comments

What Happened to the American University?

https://www.thenation.com/article/society/american-university-crisis-bollinger/
1•colinprince•31m ago•0 comments

Gutschwein – Self-hosted gift card wallet

https://github.com/MarvinParanoid/Gutschwein
1•MarvinParanoid•35m ago•0 comments

Show HN: I made a fun secure way to DM devs on GitHub

https://txta.dev/
2•smashah•35m ago•1 comments

Analyzing My Lobsters Submissions

https://abhinavsarkar.net/notes/2026-lobsters-submissions/
1•birdculture•37m ago•0 comments

Wallies: All-in-One

https://wallies.com
1•christianhawj•37m ago•0 comments

New Jersey Age approrpriate design rules are becomming law

https://captaincompliance.com/education/new-jersey-enacts-kids-code-act-with-age-appropriate-desi...
1•richartruddie•39m ago•0 comments

Show HN: Silent Shark – tactical map-based WWII submarine sim

https://silentshark.app/
1•epaga•40m ago•0 comments

Show HN: Uptime Monitoring for Your Mac

https://urlguardian.app/
1•madospace•42m ago•0 comments

The Car Got Better, the Deal Got Worse

https://www.worseonpurpose.com/p/the-car-got-better-the-deal-got-worse
3•jvican•43m ago•1 comments

Drift – Intent-driven versioning for AI coding agents

https://github.com/lilcipherx/drift
2•lilcipherx•44m 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!