frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

UK shares findings of damning climate crisis national security report

https://www.theguardian.com/environment/2026/sep/23/uk-climate-crisis-national-security-report-su...
1•littlexsparkee•2m ago•0 comments

Tiny C Compiler with POSIX superpowers

https://github.com/Muras69/TCCygwin
1•Muras•3m ago•1 comments

The Majority of Actors Are Struggling

https://www.pajiba.com/film_reviews/jack-havens-plea-for-work-reminds-us-that-the-majority-of-act...
1•mathgenius•3m ago•0 comments

Fire in the brain: How psychosis may arise when the body attacks itself

https://knowablemagazine.org/content/article/mind/2026/new-research-on-autoimmune-causes-of-psych...
1•knowablemag•9m ago•0 comments

We've Turned Starlink into a Planetary Barometer

https://www.spaceweather.com/starlink/starlink_drag_explainer.html
1•NKosmatos•11m ago•0 comments

One setup, every AI CLI with agnostic-AI

https://agnostic-ai.org/
1•Chemaclass•11m ago•1 comments

Why did Google declare war on HTTP? (2016)

https://wp.josh.com/2016/04/01/googles-war-on-http/
1•1vuio0pswjnm7•16m ago•1 comments

Show HN: NetHackers

https://nethackers.dunnolab.ai/
1•vokneruk•17m ago•0 comments

Sidehoe – Your Roster. Handled

https://www.sidehoe.chat/
1•sergiotapia•19m ago•0 comments

That About Wraps It Up for Stock Mac UI

https://inessential.com/2026/09/22/that-about-wraps-it-up-for.html
2•birdculture•19m ago•0 comments

Meta Connect 2026

https://www.meta.com/en-gb/connect/#watch
1•pelcg•20m ago•0 comments

I tried using Jev for judgment based guardrails

https://github.com/deepansh-saxena/jev-guardrails
1•deepanshsaxena•20m ago•0 comments

Why Don't My Agents Break Containment?

https://harper.blog/2026/09/22/break-away/
1•pongogogo•20m ago•0 comments

Show HN: Recipe Card Creator

https://www.sunnyshorescreative.com/recipe-card-creator
1•bobblywobbles•21m ago•0 comments

Show HN: Hosted JayBase – An append-only data store for safe AI agent writes

https://jaybase.ai
1•kvisner•21m ago•0 comments

Trump Invites Putin to G20 in Miami, Rubio Says

https://www.politico.com/news/2026/09/23/trump-putin-g20-miami-01089850
3•_djo_•24m ago•0 comments

Critical GitLab Auth RCE via Double-Free in Regex Parser

https://docs.gitlab.com/releases/patches/patch-release-gitlab-19-4-1-released/
1•pelcg•24m ago•0 comments

Ursa: A storage engine that implements Lakestream

https://github.com/openlakestream/ursa
3•jinqueeny•26m ago•0 comments

Show HN: Make cursed fonts like Times New Bastard

https://bastardica.mitpit.com
1•MitPitt•28m ago•0 comments

I made a social media site

1•saqaliba•28m ago•0 comments

Show HN: The Mouse Is Coming Too – Easy Switch for Legacy Logitech Devices

https://github.com/ensoenso/the-mouse-is-coming-too
1•evek•28m ago•0 comments

Show HN: PromptSpend – LLM API prices re-checked daily, with source per price

https://promptspend.com/
1•AndrewAvery7•31m ago•1 comments

Do Our Emotions Have a Culture?

https://booksandideas.net/Do-Our-Emotions-Have-a-Culture
1•rdmuser•32m ago•0 comments

ArXiv receives multiyear commitments to support it as an independent nonprofit

https://blog.arxiv.org/2026/09/23/arxiv-receives-multiyear-investment/
5•JohnHammersley•35m ago•0 comments

ASML currently sells no chipmaking machines in Europe, executive says

https://nltimes.nl/2026/09/22/asml-currently-sells-chipmaking-machines-europe-executive-says
8•doener•39m ago•1 comments

AI leaders warn UN of security risks as systems grow more powerful

https://www.reuters.com/business/ai-leaders-brief-un-amid-warnings-technology-could-slip-beyond-h...
1•layer8•40m ago•0 comments

In-Process MCP for MySQL

https://villagesql.com/blog/mcp/
1•deesix•40m ago•1 comments

Researcher Found 76 Vulnerabilities in Managed PostgreSQL Security Extensions

https://mehmetince.net/part-2-6-breaking-the-superuser-guardrails-attacking-security-hardening-ex...
2•ozirus•40m ago•0 comments

Linux support is coming to Snapdragon X2 Series

https://www.qualcomm.com/news/onq/2026/09/snapdragon-summit-agentic-ai-pcs-linux
29•aaronday•43m ago•9 comments

Toyota is finally taking its best-seller electric

https://electrek.co/2026/09/23/toyota-best-selling-corolla-electric/
3•cisc•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!