frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

On Type Inference

https://radekmie.dev/blog/on-type-inference/
1•theanonymousone•4m ago•0 comments

1k True Fans (2008)

https://kk.org/thetechnium/1000-true-fans/
1•downbad_•7m ago•0 comments

Join Me in Jamverse

https://contraptions.venkateshrao.com/p/join-me-in-jamverse
1•surprisetalk•7m ago•0 comments

Tattoo is permanent, pain-free, and maybe delivered in the mail

https://www.theverge.com/tech/972466/cipherx-permanent-pain-free-tattoo-microdot-patches
1•JeanKage•9m ago•0 comments

High school axes plans to deploy AI robot called Sally after ties to sex dolls

https://www.dailymail.com/news/article-16017467/humanoid-robot-teacher-new-york-axes-plan.html
1•Bender•9m ago•0 comments

Its the Resolution for Ecommerce Shops:)

https://www.loomy.work
1•Omoll•10m ago•0 comments

EROSITA delivers the most comprehensive census of the high-energy Universe

https://www.mpe.mpg.de/8215311/news20260731
1•xioxox•10m ago•0 comments

DeepSeek-AI/DeepSeek-V4-Flash-0731

https://huggingface.co/deepseek-ai/DeepSeek-V4-Flash-0731
5•Philpax•11m ago•0 comments

NOAA ditches weather-predicting supercomputers for Google Cloud

https://www.theregister.com/hpc/2026/07/29/noaa-ditches-weather-predicting-supercomputers-for-goo...
2•Bender•13m ago•0 comments

Do High Temperatures Affect Firm Demography? Evidence from Italy

https://doi.org/10.1002/bse.71185
1•flinux•14m ago•0 comments

Max-severity Exchange server flaw under active exploitation by Kremlin hackers

https://arstechnica.com/security/2026/07/kremlin-hackers-are-exploiting-exchange-flaw-to-backdoor...
1•Bender•15m ago•0 comments

Amiga development system 1 (PRE A1000)

https://bigbookofamigahardware.com/bboah/product.aspx?id=2007
2•Bluestein•16m ago•0 comments

Ruby Central's Destructive Legacy

https://andre.arko.net/2026/07/30/ruby-centrals-destructive-legacy/
4•4d66ba06•16m ago•1 comments

Mike Williams and Björn Gustafsson on Building the Jam (Erlang) [video]

https://www.youtube.com/watch?v=sRTierdN9c4
1•sbuttgereit•18m ago•0 comments

Show HN: Strophae, multi personas chat interface

https://mtct.github.io/strophae/
1•mtct88•19m ago•0 comments

Ask HN: What are you using local LLMs for?

1•adam_patarino•19m ago•0 comments

Sample More, Reflect Less: Self-Refine and Reflexion Lose to Repeated Sampling

https://arxiv.org/abs/2607.28576
2•sbulaev•20m ago•0 comments

Math shows why your vote may not count the way you think it does

https://phys.org/news/2026-07-math-vote.html
1•pseudolus•21m ago•0 comments

A Culture That Could Only Count

https://robertxworld.com/the-culture-that-could-only-count/
1•devrob•25m ago•0 comments

Digital Independence Day: Switch to the good side every first Sunday

https://diday.org/en/
2•whilenot-dev•25m ago•0 comments

Why is assisted dying so rare, even where it's legal?

https://preservinghope.substack.com/p/why-is-assisted-dying-so-rare-even
1•arielzj•26m ago•1 comments

What a Hedge Fund's Implosion Says About the A.I. Trade

https://www.nytimes.com/2026/07/31/business/dealbook/situational-awareness-ai-hedge-fund.html
3•donohoe•26m ago•0 comments

Farmers spreading crushed glass on their crops

https://www.abc.net.au/news/2026-07-31/ground-glass-silicon-fertiliser-farm-productivity/106963488
1•porjo•27m ago•1 comments

How the Words We Teach English Language Learners Changed

https://pudding.cool/2026/07/essential-words/
1•surprisetalk•27m ago•0 comments

Amiga Pips the PC for Mission-Critical Computing at NASA (2021)

https://hackaday.com/2021/08/16/retrotechtacular-amiga-pips-the-pc-for-mission-critical-computing...
1•Bluestein•28m ago•0 comments

Shipping code without human verification

https://thenewstack.io/ship-code-without-verification/
1•tonkkatonka•28m ago•1 comments

Hello from Zernote

https://blog.zernote.com/hello-from-zernote/
1•sagotly•29m ago•0 comments

Ufc noche free: legal ways to watch and verify the card

https://mxltv.net/mx
1•cynthial485•33m ago•0 comments

How to Stop Procrastinating

https://www.nytimes.com/2026/07/31/well/stop-procrastinating-tips.html
1•EndXA•33m ago•0 comments

Violin Plot

https://en.wikipedia.org/wiki/Violin_plot
1•tosh•34m 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!