frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Every AI agrees with you. This writes your startup's obituary instead

https://theyfell.com/
2•kyleclouthier•2m ago•0 comments

"Pac-Man" enzyme breaks down bioplastics and penicillin in laboratory tests

https://phys.org/news/2026-09-pac-enzyme-bioplastics-penicillin-laboratory.html
1•mdp2021•5m ago•0 comments

Goroutine Leak Profiles

https://go.dev/blog/goroutine-leak-profiles
2•ingve•8m ago•0 comments

Maybe We Shouldn't Be Reviewing All This Code

https://martinfowler.com/rachels-ramblings/code-review.html
2•ingve•11m ago•0 comments

Launch HN: RonanRX (YC S26) – Personalized Peptides and GLP-1s

https://ronanrx.com/
4•lloydarmbrust•11m ago•2 comments

Acer's DualPlay Mini concept is both gaming handheld and mini-laptop

https://liliputing.com/acers-dualplay-mini-concept-is-both-a-gaming-handheld-and-a-mini-laptop/
2•spankibalt•13m ago•0 comments

Booz Allen Cyber Weapon Index

https://www.boozallen.com/insights/cyber/cyber-weapon-index.html
1•pseudolus•13m ago•0 comments

SDK-free, simple, email-based login/auth provider

1•ameeting•15m ago•0 comments

Lacuna, cryptic protein pocket discovery that runs on a laptop CPU

https://github.com/mooreneural/lacuna
1•ramen0w0•17m ago•0 comments

British Pet Massacre

https://en.wikipedia.org/wiki/British_pet_massacre
2•georgecmu•18m ago•0 comments

With Gemini 3.8 Flash, Google reminds everyone it's still in the race

https://www.theregister.com/ai-and-ml/2026/09/02/with-gemini-38-flash-google-reminds-everyone-its...
1•joebuckwilliams•19m ago•0 comments

Kimi Launches IPO Before Market Stops Pricing Dreams

https://chinaonchina.com/article/kimi-launches-ipo-before-market-stops-pricing-dreams
2•try-working•19m ago•0 comments

Hermes CEO Suddenly Takes Interest in China's Pork Prices?

https://chinaonchina.com/article/hermes-ceo-suddenly-interested-in-china-s-pork-prices
1•try-working•20m ago•0 comments

US Government worried that AI companies can't innovate without legal theft

https://appleinsider.com/articles/26/09/02/us-government-worried-that-ai-companies-cant-innovate-...
3•tabith•25m ago•1 comments

NASA delays Crew-13 launch after leak found on SpaceX Dragon

https://www.sciencedaily.com/releases/2026/09/260901010705.htm
1•bookmtn•25m ago•0 comments

You're Not in the Loop Anymore. You're Running the Loops

https://www.kevinold.com/blog/running-the-loops
1•kevinold•25m ago•3 comments

Snowflake Q2 2027 earnings report

https://investors.snowflake.com/financials/quarterly-results/default.aspx
2•kklisura•28m ago•0 comments

Pushing UberDDR3 Frequency Through RTL Cleanup

https://www.openiphub.com/post/pushing-uberddr3-frequency-through-rtl-cleanup-post-18
1•peter_d_sherman•28m ago•0 comments

Traverse – [Horizontal] OPML Outliner for macOS

https://apps.shakingthehabitual.com/traverse/
1•treetalker•29m ago•1 comments

Bridging Models' Internal States

https://mostik.ai/read-more
1•ashvardanian•29m ago•0 comments

CHC5: Open Camera System – Image Sensor Specification Comparison

https://www.circuitvalley.com/2026/08/chc5-open-camera-sensor-comparison-specification.html
1•devoxel•30m ago•1 comments

Show HN: PuPPT – slide renderer and inline editor for PPT/PPTX (Golang/no deps)

https://github.com/artpar/puppt
1•artpar•31m ago•0 comments

On the Loose

https://www.hyperdimensional.co/p/on-the-loose
1•jdkee•35m ago•0 comments

US judge blocks Trump's newest order limiting birthright citizenship

https://www.reuters.com/world/us-judge-wont-immediately-block-trumps-newest-order-limiting-birthr...
4•tartoran•35m ago•0 comments

US charges two former Linqto CEOs over $450M 'pre-IPO' fraud scheme

https://www.reuters.com/legal/government/us-charges-two-former-linqto-ceos-over-450-million-pre-i...
3•tartoran•36m ago•0 comments

She backed body positivity. He's a scientist. Both are on GLP-1s

https://www.thetimes.com/life-style/health-fitness/article/glp1-jabs-body-positivity-matter-of-fa...
2•paulpauper•37m ago•0 comments

Inference-only expert boost saves 8.5% reasoning tokens in Qwen 35B MoE

https://zenodo.org/records/22255483
2•ConteMascetti71•37m ago•0 comments

Google Engineer Accused of Polymarket Insider Trading Says He Was Just Gambling

https://www.wired.com/story/google-engineer-accused-of-polymarket-insider-trading-says-he-was-jus...
3•paulpauper•39m ago•0 comments

Ask HN: How to get taken seriously while using AI?

2•askHN2026•39m ago•1 comments

Ex-White House teleprompter operator ordered pay $172,000 for Trump speech bets

https://www.bbc.com/news/articles/c4gj2dl4x52o
2•paulpauper•39m 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!