frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

JDK 26 G1/Parallel/Serial GC Changes

https://tschatzl.github.io/2026/02/26/jdk26-g1-serial-parallel-gc-changes.html
1•0x54MUR41•46s ago•0 comments

Show HN: Django Neural Feed – Hybrid personalized feeds in a single SQL query

https://github.com/itsDersty/django-neural-feed
1•itsDersty•1m ago•0 comments

Are We Harold Bloom?

https://abner.page/post/are-we-harold-bloom/
1•dev_hugepages•1m ago•0 comments

Adafruit vs. Flux [pdf]

https://storage.courtlistener.com/recap/gov.uscourts.cand.471648/gov.uscourts.cand.471648.1.0.pdf
1•erk__•1m ago•0 comments

SoftBank Attempt to Get $6B OpenAI Margin Loan Stalls

https://www.bloomberg.com/news/articles/2026-06-10/softbank-s-attempt-to-get-6-billion-openai-mar...
1•jalev•1m ago•0 comments

Apple Wants Europe to Blink

https://www.theverge.com/ai-artificial-intelligence/947051/apple-europe-dma-siri-ai
1•cdrnsf•2m ago•0 comments

Anthropic's Fable 5 Silent Sabotage Mode

https://everettdutton.com/anthropic_trust_destruction
1•edot•2m ago•0 comments

You're not even allowed to ask Fable about basic biology questions

https://twitter.com/cremieuxrecueil/status/2064433331970720187
1•bilsbie•2m ago•0 comments

All 9,300 Japanese train station, animated by the year it opened (1872–2026)

https://jivx.com/eki
3•momentmaker•3m ago•0 comments

North Mini Code: Cohere's first agentic open-source coding model

https://cohere.com/blog/north-mini-code
2•AbuAssar•4m ago•0 comments

Show HN: Butterfly CSS framework forget class soup

https://butterflycss.amrzlabs.com
3•amrkilany•4m ago•0 comments

Show HN: SoulOS open-source replacing system prompts with stable state machines

https://github.com/mziqudhd92/soul-os
2•ls1911•5m ago•0 comments

Show HN: Drift – an embedding-model upgrade should be a rotation, not a reindex

https://github.com/aayush4vedi/drift-spark
2•aayush4vedi•6m ago•0 comments

OpenAI CFO – AI Experience Mandatory

https://timesofindia.indiatimes.com/technology/tech-news/openai-cfo-sarah-friar-i-wouldnt-hire-a-...
2•snigacookie•6m ago•0 comments

USGS Finds 328 Years of Lithium Imports Buried in Appalachia

https://oilprice.com/Energy/Energy-General/USGS-Finds-328-Years-of-Lithium-Imports-Buried-in-Appa...
2•PaulHoule•7m ago•0 comments

Firefox Android Play Integrity check hits custom ROMs

https://www.omgubuntu.co.uk/2026/06/mozilla-firefox-android-google-play-integrity
2•rpgbr•8m ago•1 comments

Developers manage browser tabs: A survey of 50 devs

https://gopeek-lovat.vercel.app/blog-developer-tab-survey.html
1•ofcyes•12m ago•0 comments

Show HN: Do-I-understand – Check you understand AI-written code before you merge

https://github.com/AnthonyPAlicea/skills/
1•TonyAlicea10•13m ago•0 comments

Show HN: OGA – One Good Article – a redirect to one good random HN article

https://www.bbc.com/news/world-europe-57589822
1•atulvi•13m ago•0 comments

Microsoft June 2026 Security Updates

https://msrc.microsoft.com/update-guide/releaseNote/2026-Jun
2•berlianta•13m ago•0 comments

Musk Looks to an Army of Loyalists to Help Make Him a Trillionaire

https://www.wsj.com/articles/musk-spacex-ipo-retail-traders-a13e9030
2•ironyman•13m ago•1 comments

Using Xcode 27's Agent Skills in Claude, Codex, and Cursor

https://www.avanderlee.com/ai-development/using-xcode-27s-agent-skills-in-claude-codex-and-cursor/
1•ianhxu•14m ago•0 comments

1099 contractors can earn ~7% more by reporting their expenses

https://taylor.town/expenses-000
1•surprisetalk•14m ago•0 comments

Claude Fable cheered me up by building this tryptich

https://fireshow.pages.dev/
1•keepamovin•15m ago•1 comments

Website "IS" GNOME 2 desktop

https://bennypowers.dev/
1•ashitlerferad•15m ago•0 comments

Quivers: A year of linear algebra by drawing arrows

https://lisyarus.github.io/blog/posts/quivers-a-year-of-linear-algebra-by-drawing-arrows.html
1•ibobev•17m ago•0 comments

Show HN: Codacy Skills for Claude, Codex, Copilot, etc.

https://github.com/codacy/codacy-cloud-cli
1•claudiacsf•17m ago•0 comments

Learning Regular Languages with the TTT Algorithm

https://rahul.gopinath.org/post/2026/06/09/ttt-grammar-inference/
1•ibobev•18m ago•0 comments

Toyota's Hybrid Battery Replacement Is No Longer a Deal-Breaker for Buyers

https://carbuzz.com/toyota-hybrid-battery-replacement-no-longer-a-deal-breaker-buyers/
1•teleforce•18m ago•0 comments

What is some cool subject that Linux Youtubers could be talking about now?

1•abakh•19m ago•1 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!