frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

EU's five regulations that will change how we live, drive, and use the internet

https://twitter.com/dziki_zachod/status/2074795633442201804
1•gasull•31s ago•0 comments

Touchscreens in cars are getting worse, Swedish test finds

https://www.vibilagare.se/touchscreens-cars-are-moving-wrong-direction
1•eriksdh•2m ago•0 comments

Show HN: You can continue a Claude session in Codex, and vice versa

https://github.com/theoriclabs/agent-convert
2•hargup•10m ago•2 comments

Extracts of Polypore Mushroom Mycelia Reduce Viruses in Honey Bees

https://www.nature.com/articles/s41598-018-32194-8
1•tomaytotomato•11m ago•0 comments

Monarchies of Malaysia

https://en.wikipedia.org/wiki/Monarchies_of_Malaysia
1•thunderbong•12m ago•0 comments

Show HN:Getting GLM 5.2 running on my slow computer

1•vforno•12m ago•0 comments

CEO and Creator of Ethos Engine for AI

1•frajaro•16m ago•0 comments

Etcd v3.7.0

https://etcd.io/blog/2026/announcing-etcd-3.7/
1•enz•17m ago•0 comments

Timeline Studio – browser AI voiceover editor running ONNX locally

https://video-editor.ai-creator.top/
2•martindelophy•18m ago•0 comments

The robotaxi law that could ban Tesla

https://www.theverge.com/transportation/962309/new-jersey-robotaxi-bill-lidar-tesla
2•baranul•19m ago•0 comments

Before AI Ships Code, Show Me the Receipts

https://www.pagerduty.com/eng/before-ai-ships-code-show-me-the-receipts/
1•mlashcorp•20m ago•0 comments

The AI didn't get smarter about my project. My notes did

https://www.syncpen.io/blog/your-ai-doesn-t-get-better-your-workspace-does
1•airbuzz•22m ago•0 comments

LingBot-World 2.0: Interactive world generation from image, text, and actions

https://github.com/Robbyant/lingbot-world-v2
1•jallenjia•22m ago•0 comments

International timekeepers to vote on changing the leap second to a leap hour

https://www.scientificamerican.com/article/international-timekeepers-to-vote-on-changing-the-leap...
3•beardyw•27m ago•0 comments

$130M Series A to Build the Open Superintelligence Stack

https://www.primeintellect.ai/blog/series-a
1•ronfriedhaber•28m ago•0 comments

Quantum Pairs Stitch Space-Time (2015)

https://www.quantamagazine.org/tensor-networks-and-entanglement-20150428/
1•throwaway81523•29m ago•0 comments

World Tour Finals 2026 Algorithm: Human vs. AI Exhibition Match

https://atcoder.jp/login?continue=https%3A%2F%2Fatcoder.jp%2Fcontests%2Fawtf2026algo%2Fstandings%...
1•limoce•31m ago•0 comments

A certain kind of talk around LLMs that I find increasingly puzzling

https://twitter.com/esrtweet/status/2074889702381953222
2•tosh•31m ago•0 comments

The Web's HTTP Header Junk Drawer

https://jonlu.ca/posts/http-headers-top-1000
2•luu•31m ago•0 comments

Another German state heads down the open source sovereignty road

https://www.theregister.com/software/2026/07/08/another-german-state-heads-down-the-open-source-s...
1•baranul•33m ago•0 comments

Stride Game Engine

https://www.stride3d.net/
1•notRobot•38m ago•0 comments

I built a $10M run rate AI Startup in 150 days [video]

https://www.youtube.com/watch?v=VMyHC7qUrhI
1•zetamax•45m ago•1 comments

SanDisk has highest unrealized losses

https://old.reddit.com/r/StockMarket/comments/1uqmktf/sandisk_has_highest_unrealized_losses/
1•mgh2•46m ago•0 comments

The potential role of iron fuel in Europe's clean energy transition

https://www.cell.com/chem-circularity/fulltext/S3051-2948(26)00043-5?_returnURL=https%3A%2F%2Flin...
2•Tomte•49m ago•1 comments

Why new €3 customs charge tells a bigger story about global trade

https://www.rte.ie/brainstorm/2026/0709/1582146-3-euro-customs-charge-online-shopping-global-trad...
3•austinallegro•52m ago•0 comments

The 4th Amendment Moves to the Cloud: Chatrie and the Future of Digital Privacy

https://www.wilmerhale.com/en/insights/client-alerts/20260702-the-fourth-amendment-moves-to-the-c...
1•greyface-•54m ago•0 comments

Show HN: PandaPage – host an HTML page with one curl, no signup, auto-expires

https://pandapage.clawshop.sh
1•itskritix•54m ago•0 comments

Local codereview tool for handing structured review to agent

https://github.com/rosenbjerg/local-review
1•mrosenbjerg•1h ago•1 comments

Probelock – lockfile for LLM tool calling

https://github.com/kelkalot/probelock
1•rar101x•1h ago•0 comments

Show HN: Reddit-opportunities – See who is asking for you in Reddit

https://karmybot.com/reddit-opportunities
1•dhante•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!