frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Francesca Albanese on the untapped power of international law

https://www.reuters.com/lifestyle/culture-current/francesca-albanese-untapped-power-international...
1•skibz•1m ago•0 comments

Removing fsync from our local storage engine

https://fractalbits.com/blog/remove-fsync/
2•zzsheng•5m ago•1 comments

Tired of "Move to left and decrease border radius"? Try Browser-Mutation

https://github.com/JosPMSilva/Browser-mutation
1•JosPMSilva•5m ago•0 comments

Ask HN: Degraded GPT-5.5 Quality?

1•ramon156•12m ago•0 comments

K8s-Container_escape_audit Version 3

https://github.com/liamromanis101/K8s-container_escape_audit
1•lromanis•19m ago•1 comments

Grok TTS: X's Latest TTS Model Sets a New Baseline

https://techstackups.com/articles/grok-tts-xai-text-to-speech-model/
1•ritzaco•21m ago•0 comments

Silicon oscillators solve problems in seconds using semiconductors

https://techxplore.com/news/2026-05-silicon-oscillators-problems-thousands-years.html
1•01-_-•22m ago•0 comments

U.S. and China Pursue Guardrails to Stop AI Rivalry from Spiraling into Crisis

https://www.wsj.com/world/china/u-s-and-china-pursue-guardrails-to-stop-ai-rivalry-from-spiraling...
1•01-_-•24m ago•0 comments

HomeDesignsAI

https://homedesigns.ai
2•bellamoon544•29m ago•0 comments

Progressively Improving a Ball of Mud

https://afilina.com/improving-ball-of-mud
2•luu•30m ago•0 comments

The best ideas come from the arena

https://www.reproof.app/blog/amex-history
1•maguay•33m ago•0 comments

ZAYA1-8B: An 8B Moe Model with 760M Active Params Matching DeepSeek-R1 on Math

https://firethering.com/zaya1-8b-open-source-math-coding-model/
1•steveharing1•34m ago•0 comments

Ask HN: Does a vetted marketplace improve hiring?

1•Sam6late•35m ago•0 comments

Subquadratic claims to have fixes attention scaling with 12M context window

https://twitter.com/alex_whedon/status/2051663268704636937
1•jiwidi•38m ago•0 comments

Who edited the date stamp of this post

https://xcancel.com/iamasoothsayer/status/1535494638391664641?s=46%0A
2•razodactyl•43m ago•0 comments

The Semantic Conception of Truth and the Foundations of Semantics(1944)

https://www.ditext.com/tarski/tarski.html
2•nill0•46m ago•0 comments

My first post scored 1. Karpathy's autoresearch idea helped me repost

https://github.com/meller/laneconductor
2•meller_a•51m ago•0 comments

Has Meta ever provided Qualcomm EDL files for recovery?

1•nar001•58m ago•0 comments

Mapping Project Complexity with AI

https://www.maiobarbero.dev/articles/project-complexity-ai-skills/
1•maiobarbero•58m ago•1 comments

Show HN: Production-Ready MERN Job Board Template

https://auditjobs.up.railway.app/
1•hlymrk•59m ago•0 comments

Show HN: Crypto Cards – 136 debit/credit cards, MIT-licensed list

https://github.com/mbtrilla/awesome-crypto-cards
1•mbtrilla•1h ago•0 comments

Message Brokers Are Modern Grids(2020)

https://yusufaytas.com/message-brokers-are-modern-grids
3•return_null•1h ago•0 comments

Show HN: Modolap, Improve the Reliability of Your Software Systems

https://modolap.com/
1•ronfriedhaber•1h ago•0 comments

I Wrote a Nix Flake for Helium Browser with Home Manager and NixOS Modules

https://github.com/oxcl/nix-flake-helium-browser
2•oxcl•1h ago•0 comments

Show HN: Social Network for Corporate Cringe

https://CringeOut.com
5•CringeOut•1h ago•1 comments

Plimpton 322 – Babylonian Clay table of triangles 1k years before Pythagoras

https://en.wikipedia.org/wiki/Plimpton_322
1•lifeisstillgood•1h ago•1 comments

Show HN: Uvx privacy-steward for PII removal in texts

https://github.com/AI-Colleagues/privacy-steward
1•NeuralNotwork•1h ago•0 comments

Show HN: Imagev2.me – Tired of juggling AI image subs, so I built one studio

https://imagev2.me/
1•billy42•1h ago•0 comments

SEO-Friendly Public Pages for Confluence

https://marketplace.atlassian.com/apps/356517983/public-pages-for-confluence
1•MaxBabenko•1h ago•0 comments

AI Agent Drained for $200K with This One Tweet Hack

https://www.ccn.com/news/crypto/ai-agent-drained-for-200k-with-this-one-tweet-hack-heres-how/
2•aledevv•1h 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!