frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Abandoning Scientific Linux Was a Mistake

https://blog.melashri.net/posts/scientific-linux-mistake/
1•elashri•2m ago•0 comments

I used to get paid to hang out with famous people

https://www.blackbirdspyplane.com/p/i-used-to-get-paid-to-hang-out-with-famous-people
1•pr337h4m•5m ago•0 comments

Ju Ju Tsu A book about jj / jujutstu

https://arialdo.codeberg.page/ju-ju-tsu/
1•fanf2•6m ago•0 comments

Data Privacy: Handling Data minimisation as a reactive strategy

https://scrutora.com/blog/data-minimisation-from-the-code-up
1•vimaldwivedi86•7m ago•0 comments

A garden and photovoltaic panels on the roof of the house [video]

https://www.youtube.com/watch?v=QPRrpcEwZV0
1•moltean•9m ago•0 comments

"What is still exciting in tech?"

https://merveilles.town/@neauoire/117315783660903484
1•gum_wobble•9m ago•0 comments

ShinyHunters claims FBI hack: 'This is NOT financially motivated'

https://www.theregister.com/security/2026/09/22/shinyhunters-claims-fbi-hack-this-is-not-financia...
2•joebuckwilliams•11m ago•0 comments

Heimdall – interactive code maps for your codebase

https://heimdallmap.com
1•pedrovgs•12m ago•1 comments

One thing I can beat Jev at: ROT13

https://arsh.zip/posts/jev-games/
1•arshxyz•14m ago•1 comments

PyTorch Implementation of Asymptotic Non-Closure Loss (ANC)

https://github.com/chris-anc/ANC-Loss-Tensor
1•anc_architect•15m ago•0 comments

Show HN: Lineselect – Interactive Line Picker

https://urbanogilson.github.io/lineselect/
1•urbanogilson•15m ago•0 comments

Using Llama-cpp-Python grammars to generate JSON

https://til.simonwillison.net/llms/llama-cpp-python-grammars
1•Bluestein•16m ago•0 comments

Show HN: Company-as-Code –> Spec and Validator

https://github.com/Pirol-ai/company-as-code
2•grischajacobs•18m ago•0 comments

Ask HN: How do GitHub Copilot and Anthropic Claude compare in cost?

2•erwindegroot•19m ago•1 comments

Jev Projects Listing Site

https://jevable.com/
1•Bluestein•20m ago•0 comments

Turn Phone into PC Speaker

2•kinle•21m ago•0 comments

Android 17 enables certificate transparency, and breaks custom CAs

https://httptoolkit.com/blog/android-17-certificate-transparency/
2•pimterry•22m ago•0 comments

Meta's New Muse AI Agent Read My Private Messages. I Never Asked It To

https://www.inc.com/jason-aten/metas-new-muse-ai-agent-read-my-private-messages-i-never-asked-it-...
1•LikelySupernova•24m ago•0 comments

WayVR – Open-source VR desktop overlay for Linux

https://digitalescapetools.com/tools/wayvr.html
1•xabd•26m ago•0 comments

Show HN: Moto – a native habit tracker for iPhone with a lifetime purchase

https://motohabit.com/
1•voising•26m ago•0 comments

Show HN: ReWeaver AI DriftDetector – score a GitHub repo's production readiness

https://drift.reweaver.ai/
1•gojongo•27m ago•0 comments

PEP 845 – Leading-Dot Value Patterns

https://peps.python.org/pep-0845/
1•orf•30m ago•0 comments

Hyprcrd – native Wayland host for Chrome remote desktop

https://github.com/jxoesneon/hyprcrd
1•jxoesneon•32m ago•0 comments

IdP Registration API

https://github.com/w3c-fedid/idp-registration/
2•erlend_sh•37m ago•0 comments

Shut up and calculate: Jev's new AI primitives for coders

https://www.theregister.com/devops/2026/09/23/shut-up-and-calculate-jevs-new-ai-primitives-for-co...
1•beardyw•38m ago•0 comments

Show HN: Gwae – infinite-scroll terminal multiplexer for AI agent fleets

https://github.com/hongnoul/gwae
1•hongnoul•38m ago•0 comments

Show HN: Structured Promptmaker

https://www.gptpromptmaker.com/
2•sanathbhat•44m ago•0 comments

Porting a clearing-house money market to a smart contract

1•citizensinan•47m ago•0 comments

Arcentry is back – create beautiful 3D infrastructure diagrams

https://arcentry.com/?src=hn
2•wolframhempel•47m ago•0 comments

Listening to loud music on a Singapore bus? It'll cost you

https://www.cnn.com/2026/09/22/travel/singapore-bus-rules-music-intl-hnk
2•edward•49m ago•2 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!