frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Become the Top Newsletter

https://www.topnewsletters.lol/
1•mattmerrick•41s ago•0 comments

Jarred Sumner: Zig vs. Rust Compile Times for Bun

https://twitter.com/jarredsumner/status/2090619419059974620
1•mustache_kimono•57s ago•0 comments

Orbital Construction Pioneers

https://orbitalconstructionpioneers.com/
1•pmcjones•1m ago•0 comments

Embedded Swift improvements coming in Swift 6.4

https://www.swift.org/blog/embedded-swift-improvements-coming-in-swift-6.4/
1•timsneath•4m ago•0 comments

Bringing Primary Constructors to Dart

https://dart.dev/blog/bringing-primary-constructors-to-dart
1•danbolt•7m ago•0 comments

Bug test: I think I cannot delete video posts, even right away

https://www.youtube.com/watch?v=qCljI3cIObU
1•consumer451•10m ago•1 comments

Show HN: GatiNow – branded booking pages with built-in payments

https://www.gatinow.com/features
1•chowkodali•10m ago•0 comments

SpacetimeDB and BitCraft (2023)

https://bitcraftonline.com/news/spacetimedb-and-bitcraft
1•peter_d_sherman•11m ago•0 comments

Trump's brazen crypto bank scheme may be his sleaziest yet

https://www.msn.com/en-us/money/general/trump-s-brazen-crypto-bank-scheme-may-be-his-sleaziest-ye...
2•petethomas•13m ago•0 comments

59 Days left "Nobody is Clean"

1•gladiator291288•13m ago•0 comments

Claude driving an autonomous RC car [video]

https://www.youtube.com/watch?v=jBpQiv-ZlVM
1•nreece•16m ago•0 comments

Fair Witness

https://gtraviswhite.substack.com/p/fair-witness
1•jmward01•20m ago•0 comments

HTTP Server API: A Draft Specification

http://www.jasnell.me/posts/http-server-api-draft
1•jcbhmr•21m ago•0 comments

.NET Foundation Statement on Open Source Maintenance Fees

https://pro.dnf.cloud.sitefinity.com/news-events/detail/.net-foundation-statement-on-open-source-...
1•nreece•21m ago•0 comments

Gisting: Compressing LLM Agent context to ↑ throughput and ↓ cost

https://shopify.engineering/gisting
1•mellosouls•23m ago•0 comments

AbracadaNames: A names explorer website

https://abracadanames.com/
1•PopFlamingo•23m ago•0 comments

Making React Testing Library Tests 43% Faster

https://sigh.dev/posts/making-react-testing-library-faster/
2•STRiDEX•24m ago•0 comments

Weather.baby

https://blog.harrison.page/weatherbaby/
1•harrisonpage•25m ago•1 comments

Berkeley Law prohibits AI use in classes (by default)

https://www.law.berkeley.edu/academics/registrar/academic-rules/artificial-intelligence-policy/
2•hackerBanana•27m ago•0 comments

Munich Court Proposes €1.05 Monthly Codec Royalty for Netflix Subscribers

https://streaminglearningcenter.com/articles/munich-court-proposes-e1-05-monthly-codec-royalty-fo...
1•dabinat•29m ago•0 comments

Donald Trump turns on Washington's museums in new culture war offensive

https://www.ft.com/content/659a00b4-be9b-467b-a676-cb73e2d3d64d
3•petethomas•30m ago•0 comments

Histoire: Storybook but Vite

https://histoire.dev/
1•jcbhmr•33m ago•0 comments

Watermarking Runif

https://minimallysufficient.com/posts/watermarking-runif/
1•minsufficient•34m ago•0 comments

ICE Wants to Give Every Officer a Body Cam, Restrict Public Access to Recordings

https://www.techdirt.com/2026/08/20/ice-says-it-will-fit-every-officer-with-a-body-cam-restrict-p...
2•hn_acker•35m ago•1 comments

Show HN: A 4 mm aluminium shower shelf held up by the tap cones

https://blog.oxplot.com/shower-shelf-held-by-taps/
1•oxplot•37m ago•0 comments

Genesis GV90

https://www.caranddriver.com/news/a73465349/2028-genesis-gv90-revealed/
1•dzonga•38m ago•0 comments

I benched frontier AI LLM models on politics, ethics, and personality traits

https://www.blackbench.ai/
2•ShawnxHe•39m ago•2 comments

Commoditizing Determinism

https://cohesivesystems.com/library/articles/commoditizing-determinism/
1•iroha1203•39m ago•0 comments

As workplace surveillance grows, it's good to know the ways employers watch you

https://apnews.com/article/employer-surveillance-bossware-tracking-workplace-7d61e74242b872457bbf...
8•devonnull•40m ago•0 comments

A minimal cross-platform C rapid GUI Application Builder

https://zelang-dev.github.io/c-gui/
3•thetechstech•41m 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!