frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Biggest Conspiracy of All

1•b112•1m ago•0 comments

Let's talk about: LinkedIn ghost jobs

1•xvxvx•2m ago•0 comments

Narrating your blog with Kokoro, a local and open source text-to-speech model

https://bart.degoe.de/narrating-your-blog-with-kokoro-a-local-opensource-model/
1•bartdegoede•3m ago•0 comments

6× faster binary search: from compiled code to mechanical sympathy

https://pythonspeed.com/articles/branchless-binary-search/
1•lumpa•7m ago•0 comments

Show HN: Mosey Parker – find a ride in bikeshare systems worldwide (iOS)

https://moseyparker.com
1•mjmsmith•7m ago•1 comments

CPU vs. FPGA data flow differences explained in a short animation [video]

https://www.youtube.com/watch?v=BML1YHZpx2o
1•binyu•8m ago•0 comments

Defining new Jax types with hijax

https://docs.jax.dev/en/latest/hijax_types.html
1•fhchl•13m ago•0 comments

The Trump administration Shakes Up Federal Grantmaking

https://thedispatch.com/article/office-of-management-and-budget-vought-grantmaking-rules/
1•paulpauper•13m ago•0 comments

What Made the Sopranos Great

https://www.richardhanania.com/p/what-made-the-sopranos-great
1•jger15•14m ago•0 comments

AI customers are coming around to the idea that small is beautiful

https://www.theregister.com/ai-and-ml/2026/07/11/ai-customers-are-coming-around-to-the-idea-that-...
1•Bender•14m ago•0 comments

Show HN: Async NFS client library for Rust, without an OS mount point

https://github.com/s2-streamstore/nfs-crust
1•shikhar•14m ago•0 comments

Theia, a fact-checker that flags sycophancy from ChatGPT/Claude/Gemini

https://gettheia.org/
1•plushywushy•14m ago•1 comments

A Beautiful Theory Falls to Ugly Data

https://marginalrevolution.com/marginalrevolution/2026/05/a-beautiful-theory-falls-to-ugly-data.html
1•paulpauper•15m ago•0 comments

Welcome to Space Jam

https://spacejamteam.substack.com/p/welcome-to-space-jam
2•paulpauper•16m ago•0 comments

Terrifying moment Grandpa is launched eight feet in the air by charging bison

https://www.dailymail.com/news/article-15971065/Grandpa-launched-eight-feet-air-bison-Yellowstone...
1•Bender•17m ago•0 comments

Aeroplane: Self-Hostable Railway

https://aeroplane.run/
1•bundie•17m ago•0 comments

You shouldn't have to show your address to buy a beer

https://www.malikpwarren.com/blog/selective-disclosure-beer
1•tomrod•17m ago•0 comments

Neocities: Create your own free website

https://neocities.org/
5•Tomte•17m ago•0 comments

Abnormal Response to Anthropic Lawsuit

https://abnormal.ai/blog/abnormal-response-to-anthropic-lawsuit
1•backlit4034•18m ago•0 comments

FBI is 'assisting' police after Lindsey Graham's death day after Ukraine trip

https://www.dailymail.com/news/article-15971771/Mystery-swirls-Lindsay-Graham-sudden-death-Ukrain...
4•Bender•18m ago•0 comments

Global Fishing Watch Map

https://globalfishingwatch.org/map/
1•willmeyers•20m ago•0 comments

Not your keys, not your songs: Last rites for Nina Protocol

https://components.news/not-your-keys-not-your-songs-nina-protocol/
1•CharlesW•21m ago•0 comments

AI's memory. On your machine, under your control

https://github.com/EXXETA/exxperts
1•alindnbrg•23m ago•1 comments

Cardspark_UI – React UI for TCG Builders

https://cardspark.dev
1•reb•27m ago•0 comments

Show HN: 2n – write directory based notes in the terminal

https://github.com/plannotator/2n
1•ramoz•29m ago•0 comments

AI Model Co-Design: Hardware-Friendly LLM Design

https://developer.nvidia.com/blog/ai-model-co-design-hardware-friendly-llm-design/
1•matt_d•32m ago•0 comments

FOIA The Dead: Sends an automated request to FBI if an obituary appears in NYT

https://foiathedead.org/
1•toomuchtodo•32m ago•1 comments

What leaked messages tell us about global hacking gang

https://www.bbc.com/news/articles/cz9lz8zp04po
3•devonnull•32m ago•0 comments

Lindsey Graham Has Died

https://www.pbs.org/newshour/politics/sen-lindsey-graham-dies-after-a-brief-and-sudden-illness-hi...
5•theckel•33m ago•1 comments

A sovereign, open foundation model for German and English

https://twitter.com/effi288/status/2075904321707798699
1•sdoering•35m 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!