frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Did China just beat Intel? [video]

https://www.youtube.com/watch?v=NAbpjiQNUMs
1•gmays•1m ago•0 comments

Show HN: Poke500 – An S&P 500-style index for the top Pokémon cards

https://xn--pok500-dva.com/
1•ninjahawk1•2m ago•0 comments

eSIM was supposed to replace SIM cards, but carriers turned it into a trap

https://www.howtogeek.com/esim-was-supposed-to-replace-sim-cards-carriers-turned-it-into-a-trap/
2•josephcsible•4m ago•0 comments

Meet the crypto billionaires building a world where money buys you a vote

https://www.bbc.com/news/articles/cly8eqyj8e2o
1•1vuio0pswjnm7•5m ago•0 comments

AliExpress gets record €550M fine from EU for allowing sale of illegal products

https://www.bbc.com/news/articles/cp8714286dpo
2•leephillips•5m ago•0 comments

Building the Pkg.go.dev TUI Explorer

https://packagemain.tech/p/building-a-pkggodev-tui-explorer
1•der_gopher•5m ago•0 comments

Dragon Labs CR-8: An 8-Channel Coherent SDR Crowdfunding Soon

https://www.rtl-sdr.com/dragon-labs-cr-8-an-8-channel-coherent-sdr-crowdfunding-soon/
1•wyclif•6m ago•0 comments

Cursor: SQLite rebuilt from manual with different model agents

https://twitter.com/cursor_ai/status/2079256614238814551
1•nvahalik•6m ago•0 comments

Software-defined hardware in the age of AI

https://www.mckinsey.com/features/mckinsey-center-for-future-mobility/our-insights/software-defin...
1•arbayi•9m ago•0 comments

AI Agentic Landscape 2026

https://trustedagents.manzia.com
1•royt75•9m ago•0 comments

Pasly – Make every ⌘V smarter

https://pasly.app/
1•AntonielMariano•10m ago•0 comments

Nvidia is building the first 'national AI'

https://www.techradar.com/pro/nvidia-is-building-the-worlds-first-national-ai-japans-frontia-proj...
2•01-_-•11m ago•0 comments

Show HN: Visual-HN – a hcker.news reader with images

https://hn.is-ai-good-yet.com/?view=frontpage
3•ilyaizen•11m ago•0 comments

Levels of Concern

https://graybeard.ing/levels-of-concern/
1•rglover•12m ago•1 comments

Reputation Is a Strategic Asset–Treat It Like One

https://freethinkinggenius.substack.com/p/your-reputation-is-a-strategic-assettreat
1•meticulousjess•12m ago•0 comments

Mark Cuban: fight inequality by giving all workers company stock

https://fortune.com/2026/07/20/mark-cuban-income-inequality-company-stock-spacex-ipo-cost-plus-dr...
3•01-_-•12m ago•3 comments

Ransomware attack forces Coca-Cola to suspend US production at dairy unit

https://www.cybersecuritydive.com/news/ransomware-attack-coca-cola-suspend-production-dairy/825540/
1•fortran77•13m ago•0 comments

Show HN: Intersections – A Daily Word Game

https://www.playintersections.com/
1•ch_ase•13m ago•1 comments

Don't Wait, Learn – The Best Resource Is Mythical

https://arpitbhayani.me/blogs/best-resource-is-mythical/
1•s_vighnesh•14m ago•0 comments

The Science of Winning: How High Performers Think About Risk

https://freethinkinggenius.substack.com/p/the-science-of-winning-how-high-performers
1•meticulousjess•14m ago•0 comments

Show HN: AI World Bakeoff – 9 models × 3 Three.js worlds

https://ai-world-bakeoff.pages.dev/
1•valhallarecords•16m ago•0 comments

I tried to record music onto a cassette tape using modern tech

https://swiftrocks.com/i-tried-to-record-music-onto-a-cassette-tape-using-modern-tech
1•ingve•17m ago•0 comments

Interactive Claude Code Reference

https://schwwaaa.github.io/claude-cheatsheet/
1•schwwaaa•19m ago•0 comments

Show HN: Fable,Kimi,GPT5.6 FFA naval war,airstrikes and radio diplomacy [video]

https://www.youtube.com/watch?v=nFxRtjgKtY0
1•masterchef2209•20m ago•0 comments

LA to Farnborough UK in Under 9h Max Speed Mach 0.93

https://bombardier.com/en/media/news/bombardiers-global-8000-worlds-fastest-civil-aircraft-sets-n...
2•r2sk5t•21m ago•1 comments

Why Microsoft's $80B Xbox Bet Backfired

https://www.wsj.com/video/why-microsoft-80-billion-xbox-bet-backfired/1CE7B4ED-CFBE-4DD8-A2AB-CC9...
3•1vuio0pswjnm7•22m ago•1 comments

Cue AI

https://deepmind.google/models/gemma/gemmaverse/cue-ai/
1•logickkk1•24m ago•0 comments

The /Goal Function Made Loop Engineering Click for Me

https://bhart.org/articles/the-goal-function-made-loop-engineering-click-for-me
2•yruzin•25m ago•0 comments

Tell HN: Old Reddit Now Requires Login

9•quincepie•26m ago•5 comments

Show HN: Lagotto Meter – how well do AI agents understand your website?

https://lake8.dev/lagotto-meter/
1•tommy2970•27m 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!