frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Wealth, Shown to Scale

https://wealth.ronnycoste.com/
2•Cider9986•4m ago•0 comments

James Murdoch to acquire half of Vox Media in deal reportedly worth $300M

https://www.theguardian.com/media/2026/may/20/james-murdoch-vox-media-deal
1•vidyesh•6m ago•0 comments

The end of free compute is the beginning of better engineering

https://the-ken.com/columns/zero-shot/the-end-of-free-compute-is-the-beginning-of-better-engineer...
1•vidyesh•6m ago•0 comments

Dumbo Could Already Fly

https://www.theintrinsicperspective.com/p/dumbo-could-already-fly
1•Schiphol•8m ago•0 comments

Ask HN: Are these videos from hacked IoT devices?

1•Cider9986•9m ago•2 comments

Politicians to Ditch Signal for Homegrown Apps

https://www.lawfaremedia.org/article/politicians-to-ditch-signal-for-homegrown-apps
1•hn_acker•12m ago•0 comments

Hadopi, perhaps the world's worst copyright law, is moribund but not quite dead

https://walledculture.org/hadopi-perhaps-the-worlds-worst-copyright-law-is-moribund-but-not-quite...
1•hn_acker•14m ago•1 comments

Is Trump trying to turn Texas blue?

https://www.natesilver.net/p/is-trump-trying-to-turn-texas-blue
1•7777777phil•15m ago•0 comments

New Generation of Accounting

1•filipriec•17m ago•1 comments

Fair Step Challenge Builder

https://motion-app.com/tools/step-challenge-builder/
1•georgegreenldn•19m ago•1 comments

Texas woman arrested for Facebook post about town water quality

https://reclaimthenet.org/texas-woman-arrested-for-facebook-post-about-town-water-quality
13•abawany•20m ago•1 comments

Iowa lawmakers to mandate students take Center for Intellectual Freedom classes

https://www.kcrg.com/2026/05/20/iowa-lawmakers-move-mandate-students-take-center-intellectual-fre...
1•hn_acker•20m ago•1 comments

Orbit – Route every AI query to the right model automatically (NPM SDK)

https://orbitai.gtll.app
2•gabrielsmartin•23m ago•0 comments

Delivery Hero reveals Uber takeover bid at €10B valuation

https://www.ft.com/content/6d5df0df-74b3-4be9-a1ec-27322e1c3184
1•JumpCrisscross•23m ago•0 comments

AI super-apps are remaking China's internet

https://www.economist.com/business/2026/05/17/ai-super-apps-are-remaking-chinas-internet
1•marojejian•24m ago•1 comments

ScyllaDB PHP Driver: the story so far

https://www.dusanmalusev.dev/blog/scylladb-php-driver-the-story-so-far
1•CodeLieutenant•25m ago•0 comments

JetBrains Is Selling Independence as the Rest of AI Coding Picks Sides

https://thenewstack.io/jetbrains-independent-ai-coding/
1•Brajeshwar•26m ago•0 comments

Texas AG sues Meta over claims that WhatsApp doesn't provide E2EE

https://arstechnica.com/security/2026/05/texas-ag-sues-meta-over-claims-that-whatsapp-doesnt-prov...
2•stalfosknight•27m ago•0 comments

Apply to Rejoin the EU as soon as possible to increase growth in the UK

https://petition.parliament.uk/petitions/749128
1•mariuz•28m ago•0 comments

The Mirror Is Part of the Machine

https://yusufaytas.com/the-mirror-is-part-of-the-machine
10•london_safari•29m ago•0 comments

The Fonts of the U.S. Federal Courts

https://daringfireball.net/2026/05/the_fonts_of_the_us_federal_courts
2•tosh•31m ago•0 comments

Being oncall taught me everything

https://yaoyue.org/blog/2026-oncall/
1•ayhanfuat•32m ago•0 comments

Star Maker by Olaf Stapledon

https://philosophynow.org/issues/173/Star_Maker_by_Olaf_Stapledon
1•measurablefunc•36m ago•0 comments

Ghana proposes mandatory licensing for IT professionals and businesses [pdf]

https://www.nita.gov.gh/wp-content/uploads/2025/NITA-2008-act-2025-1.pdf
3•certyfreak•38m ago•1 comments

JWT is a scam and your app doesn't need it

https://www.dusanmalusev.dev/blog/jwt-is-a-scam-and-your-app-doesnt-need-it
40•CodeLieutenant•40m ago•9 comments

Effects of whole-body vibration training on sarcopenia in older adults

https://www.nature.com/articles/s41598-026-45710-y
1•bookofjoe•42m ago•0 comments

Beyond Nostalgia: 8-Bit Computing as Tech Critique

https://yadin.com/notes/nostalgia/
1•dryadin•43m ago•0 comments

Rocket Mail

https://en.wikipedia.org/wiki/Rocket_mail
1•aragonite•43m ago•0 comments

See great white shark swim between surfers at Pismo Beach pier. 'It's insane'

https://www.sanluisobispo.com/news/local/environment/article315841926.html
2•Bender•43m ago•0 comments

Zuck defends monitoring employees to win AI race in purported leaked audio

https://www.theregister.com/ai-ml/2026/05/22/zuck-defends-monitoring-employees-to-win-ai-race-in-...
2•Bender•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!