frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Btrfs/ZFS/bcachefs under workloads classic benchmarks skip

https://bartosz.fenski.pl/modern-fs-benchmark/
1•farlight•1m ago•1 comments

Ask HN: How do you interview devs in a post-AI world?

2•mdwelsh•2m ago•0 comments

I Hijacked a Real Artist's Spotify with AI Music. It Was Disturbingly Easy

https://www.404media.co/spotify-ai-music-scam/
1•beardyw•5m ago•0 comments

New England RetroFest and the Maine Vintage Computer Society

https://www.goto10retro.com/p/new-england-retrofest-and-the-maine
1•rbanffy•5m ago•0 comments

You could have built Jev

https://sgnt.ai/p/jev/
1•baobabKoodaa•11m ago•0 comments

FAA to launch AI tool to help manage air traffic congestion

https://arstechnica.com/ai/2026/09/faa-tees-up-875m-ai-tool-to-help-manage-air-traffic-congestion/
1•drknownuffin•12m ago•1 comments

Show HN: 3D map of which newsletters link to the same things

https://reletter.com/graph
2•drpancake•17m ago•0 comments

Show HN: SpectralOli: Livecoding with Audio Loops

https://spectral-oli.vercel.app/
2•phantomshelby•19m ago•0 comments

FAQ: Why isn't mutable a subtype of immutable, or vice versa?

https://crumbles.blog/posts/2026-09-17-immutable-mutable.html
1•birdculture•20m ago•0 comments

Ask HN: Are there any books or online courses that changed the way you program?

2•learner_yearner•20m ago•2 comments

Show HN: S1Code, a decision-first Rust coding agent with Jev

https://github.com/mertcicekci0/S1Code
1•merthdotxyz•24m ago•0 comments

TypeSafe's Jev Can't See. I Made It Guess What I Drew Anyway

https://mikulskibartosz.name/typesafe-jev-guess-what-i-drew
1•myszon•26m ago•0 comments

Building a conversation engine in Python that shows how LLMs fake memory

https://heymeraki.substack.com/p/aie_21-building-it
1•heyy-meraki•28m ago•0 comments

People who know the most often sound the least certain

https://vrash.substack.com/p/the-people-who-know-the-most-often
10•virde•30m ago•3 comments

Show HN: Pg_chdb, fast imports from object storage to Postgres using COPY

https://clickhouse.com/blog/introducing-chdb-postgres
1•saisrirampur•30m ago•0 comments

Prompts Aren't Real

https://evaluation.club
1•mcfunley•31m ago•0 comments

Lexend: Open typeface shown to improve reading proficiency

https://lexend.com/
1•farlight•32m ago•0 comments

The blog which introduced responsive web design (2010)

https://alistapart.com/article/responsive-web-design/
1•shrikaranhanda•32m ago•0 comments

Ask HN: What is still hard to do?

3•lukehandcool•32m ago•2 comments

Show HN: Dassi – Control desktop Chrome to automate web tasks

https://www.dassi.ai/
1•imvyarqoyzcuem•32m ago•0 comments

Google Says Its A.I. Hacked Three Companies in Testing Breakout

https://www.nytimes.com/2026/09/18/technology/google-gemini-ai.html
3•doener•33m ago•2 comments

Apple's New VP of HW Engineering on iPhone Duo Hinge and Ceramic Shield 2

https://www.techradar.com/phones/iphone/i-spoke-to-apples-new-vp-of-hardware-engineering-about-wh...
2•CharlesW•35m ago•0 comments

Brain adapts to give deaf people a better visual 'danger radar'

https://sheffield.ac.uk/news/brain-adapts-give-deaf-people-better-visual-danger-radar
1•giuliomagnifico•36m ago•0 comments

CNN, MS NOW and Politico denied access to White House after Trump 'ban'

https://www.cnn.com/2026/09/19/media/trump-msnow-cnn-politico-white-house-ban
2•thm•36m ago•1 comments

Will Andrew Scott become the first out gay man to win the best actor Oscar?

https://www.theguardian.com/film/2026/sep/19/andrew-scott-best-actor-oscar-out-gay-elsinore-ian-c...
1•mykowebhn•39m ago•0 comments

Gemini AI hacked three other companies during a test

https://news.sky.com/story/googles-gemini-ai-hacks-three-other-companies-during-security-test-135...
1•geoffbp•39m ago•0 comments

Conversational-AI Framework for Go

https://github.com/gojargo/jargo
1•batmang•39m ago•0 comments

Show HN: BreachScanner – Check if your email has been in data breaches

https://github.com/Aaronmike481/BreachScanner
2•thewalnut124•42m ago•1 comments

RCMP Eligibility Checker

https://checker.joinrcmp.ca
2•mrait•44m ago•0 comments

Trump's census overhaul would exclude some immigrants and remove race questions

https://www.hawaiitribune-herald.com/2026/09/10/nation-world-news/trumps-census-overhaul-would-ex...
5•hn_acker•44m ago•2 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!