frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hetzner's Cheap Cloud Tier Is Unavailable After Two Price Increases

https://www.vincentschmalbach.com/hetzner-cheap-cloud-unavailable-price-increases/
1•vincent_s•59s ago•0 comments

You Don't Need to Write Separate Speeches for Men and Women

https://julienreszka.com/blog/you-don-t-need-to-write-separate-speeches-for-men-and-women/
2•julienreszka•8m ago•0 comments

CancerBench: The frontier model cancer cure benchmark

https://cancerbench.com/
1•Jimmc414•20m ago•0 comments

DeepSeek launches v4.1 flash, postpones v4 Pro discontinuation

1•Audiolite•23m ago•0 comments

AutoResearchExam: Measuring agents' ability to improve and generalize

https://benchmarks.bespokelabs.ai/autoresearchexam/
2•matt_d•26m ago•0 comments

IFS Fractals created using cameras screens and glass [video]

https://www.youtube.com/watch?v=8XjQ10ph4yo
1•jerrysneede•27m ago•0 comments

A Mock Interview About Eunuchs

http://verisimilitudes.net/2026-09-09
1•zdw•30m ago•0 comments

Lafcadio Hearn

https://en.wikipedia.org/wiki/Lafcadio_Hearn
1•rvrs•30m ago•0 comments

Anyone miss a flip phone with buttons? Anyone?

2•wwolfson97•30m ago•1 comments

Startup ARR is less secure

https://techcrunch.com/2026/09/03/startup-arr-is-less-secure-than-ever-new-research-shows/
2•deepmem•31m ago•0 comments

OpenAI have no mathematicians capable of understanding what they put out

https://mastodon.social/@tristanbuckmaster/117237555794407063
4•doener•33m ago•0 comments

Which Jack Vance Book Are We In? The Languages of Pao and Frontier Models

https://sebversive.com/concepts/which-vance-book-are-we-in.html
2•slurrypurr•34m ago•0 comments

False DMCA claim issued to BleachBit

https://www.bleachbit.org/anime
2•fishgoesblub•43m ago•0 comments

Trying to Make a Loop Auto-Vectorize

https://jsgroth.dev/blog/posts/trying-to-make-a-loop-auto-vectorize/
1•zdw•45m ago•0 comments

Using GPT-6 Astra for a self driving car (in simulation)

https://twitter.com/ludocomito/status/2097329417760440461
1•plun9•49m ago•0 comments

Spaceships (Reverse Asteroid)

https://spaceships.treybastian.com/
2•zdw•51m ago•0 comments

Ukrainian drones strike Russian gas facility over 3k km away in Siberia

https://kyivindependent.com/new-record-set-ukrainian-drones-strike-russian-gas-facility-over-3-00...
10•emerongi•53m ago•0 comments

Paww – an all-in-one app for dogs and their people

https://heypaww.com
2•subramanya1997•55m ago•0 comments

Own a Word – every word has one owner, and someone can outbid you for it

https://ownaword-alpha.vercel.app
1•tdrbuilder•55m ago•0 comments

OpenAI might have stolen another major proof

https://twitter.com/ValerioCapraro/status/2097791836269977996
50•tamnd•1h ago•6 comments

It's not The Incentives–it's you

https://talyarkoni.org/blog/2018/10/02/no-its-not-the-incentives-its-you/
1•yurivish•1h ago•0 comments

Valheim 1.0 Has Arrived

https://www.valheimgame.com/news/valheim-1-0-has-arrived-/
2•MehrdadKhnzd•1h ago•0 comments

All grown-ups were once children… but only few of them remember it

https://mathstodon.xyz/@tao/117244102901892965
2•yurivish•1h ago•0 comments

Opensend: Self-hosted transactional email, newsletters, and campaigns with SES

https://github.com/R44VC0RP/opensend
1•handfuloflight•1h ago•0 comments

Show HN: Claude Project Downloader

https://chromewebstore.google.com/detail/claude-project-downloader/ghbdnpphggjonapjkehkmhpnmhcngbbg
1•qwikhost•1h ago•0 comments

Trump promises $5k dividend in convention speech, but only if Republicans win

https://www.npr.org/2026/09/09/nx-s1-5961045/republican-midterm-convention-dallas-trump-vance
15•KingOfMyRoom•1h ago•9 comments

The Network Always Beats the Castle

https://sundaylettersfromsam.substack.com/p/the-network-always-beats-the-castle
1•benwen•1h ago•1 comments

Anthropic Just Threatened to Kill Billions of People. This Is Not Okay

https://calnewport.com/anthropic-just-threatened-to-kill-billions-of-people-this-is-not-okay/
6•alexfortin•1h ago•3 comments

The AI policy window is open. We need to act

https://openai.com/index/ai-policy-window/
1•johntb86•1h ago•1 comments

Rebuilding an AI-made browser game with Astra 6

https://arcane-orb-workshop.pages.dev/
2•Spazztik•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!