frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Opus 5.5 is good at explainer videos

https://launchvideo.io
1•iacguy•16s ago•0 comments

Bosphore 1819: Reviving a 200-Year-Old Map of Istanbul with Opus 5.5

https://twitter.com/cahidarda/status/2103218970115678497
1•cahid_arda•1m ago•1 comments

Anthropic Strikes $12B AI Computing Deal with Akamai

https://www.bloomberg.com/news/articles/2026-09-24/anthropic-strikes-12-billion-deal-with-akamai-...
1•mfiguiere•1m ago•0 comments

Show HN: RentBench – Levels.fyi for UK Rents

https://rentbench.fyi
1•lluiscamino•2m ago•0 comments

The Tao of Acme

https://chai.guru/pub/plan9/mirrors/tao-of-acme.html
1•naltun•3m ago•1 comments

Mamdani is the most popular elected official in NYC: poll

https://www.nydailynews.com/2026/09/23/mamdani-is-the-most-popular-elected-official-in-nyc-poll/
1•downbad_•3m ago•0 comments

Democratic megadonor who gave to Gavin Newsom and Kamala Harris linked to murky

https://nypost.com/2026/09/22/us-news/california-donor-faces-scrutiny-over-alleged-chinese-spy-ties/
1•harry_nutsachs•4m ago•0 comments

Probing picosecond depairing currents in type-II superconductors

https://www.nature.com/articles/s41567-026-03469-z
2•PaulHoule•7m ago•0 comments

Ask HN: How would you know if you have learned something?

1•rearview•7m ago•0 comments

SciUniverse: Can frontier models carry out scientific work?

https://c5r.net/sciuniverse/
6•famouswaffles•9m ago•0 comments

Compio: A thread-per-core async Rust runtime with IOCP/io_uring/polling

https://github.com/compio-rs/compio
3•bootlegbilly•12m ago•0 comments

Swarm Scaling

https://www.tobyord.com/writing/swarm-scaling
2•louiereederson•17m ago•0 comments

Cracking VFPU math functions using Claude (Sony PSP)

https://www.ppsspp.org/blog/vfpu-math-re/
3•hrydgard•19m ago•1 comments

ZeroDrift – A small model that finds and fixes compliance violations

https://zerodrift.com/model/anchor-3-benchmark
2•chobberoni•21m ago•0 comments

Show HN: Dunara

https://dunara-studio.com/
1•grebmann•21m ago•0 comments

Flux 3 Action Tops RoboLab, but Large Companies Can't Use It in a Product

https://topicqueue.substack.com/p/flux-3-action-tops-robolab-but-larger
1•DISCURSIVE•21m ago•0 comments

Astronomers capture an unprecedented view of gas giant formation in action

https://phys.org/news/2026-09-astronomers-capture-unprecedented-view-gas.html
3•PeterCorless•22m ago•0 comments

China Holds Sensitive F-35 Parts Diverted to Hong Kong from Australia

https://www.bloomberg.com/news/articles/2026-09-23/china-is-holding-sensitive-f-35-parts-diverted...
3•rbanffy•24m ago•2 comments

The "C" Word

https://blog.coredump.cx/p/the-c-word
2•zdw•25m ago•1 comments

Restaurants Are Using AI to Advertise Their Food and It's Making People Sick

https://www.wsj.com/tech/ai/restaurants-ai-food-image-generators-advertisements-efb787a9
2•victor106•25m ago•0 comments

Topcoat is pushing the boundary of server applications with Rust

https://tokio.rs/blog/2026-09-24-topcoat-server-applications
2•carllerche•26m ago•0 comments

Global Chat

https://global-chat.jojoban842.workers.dev/
1•theredpainter•26m ago•0 comments

Show HN: Offline recorder and transcriber on your MacBook's notch

https://memorynotch.app/
4•choyiny•27m ago•0 comments

Dailies: Daily games with friends and family, in your texts

https://www.dailies.world/
1•dvdhutch•28m ago•1 comments

Quanta's Thomas Lin Trusts the Public Can Handle Complex Ideas

https://www.insidehighered.com/opinion/columns/public-scholar/2026/09/08/quantas-thomas-lin-trust...
2•digital55•29m ago•0 comments

Sourcehut account takeover via build logs (XSS in ansi2html)

https://blog.arusekk.pl/posts/srht-account-takeover/
6•arusekk•34m ago•0 comments

A new data layer for robot learning

https://rerun.io/blog/data-layer-for-robot-learning
2•intrepidsoldier•35m ago•0 comments

How to stay smart in the age of AI: the science of critical thinking

https://www.nature.com/articles/d41586-026-02930-6
3•digital55•35m ago•0 comments

Why AI companies don't need new laws

https://twitter.com/Paul__Walsh/status/2102801667657748720
2•MrBuddyCasino•37m ago•1 comments

Alexandr Wang Is Meta's Not-So-Secret Weapon in the AI Agent Promo War

https://www.businessinsider.com/alexandr-wang-meta-muse-social-media-posts-pr-strategy-2026-9
3•Anon84•37m 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!