frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Steam Machine: Official Overview and Quick Start Guide [video]

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

Show HN: Fiveminutebrief – Turn any topic into your own daily podcast

https://fiveminutebrief.ai/
1•danielshinall•1m ago•0 comments

Where U.S. Salary Ranges Help Job Seekers

https://corvi.careers/blog/salary-range-clarity-role-state-metro-rankings/
2•sp1982•2m ago•0 comments

Node.js worker threads in production: what's easy, what's not

https://www.inngest.com/blog/node-worker-threads-production
2•goodoldneon•2m ago•0 comments

The sorry state of skill distribution

https://blog.trailofbits.com/2026/06/03/the-sorry-state-of-skill-distribution/
2•speckx•3m ago•0 comments

Graph of Thoughts: Solving Elaborate Problems with Large Language Models

https://github.com/spcl/graph-of-thoughts
1•simonpure•3m ago•0 comments

OS9Map

https://yllan.org/software/OS9Map/
1•LaSombra•5m ago•0 comments

Recruitment and Selection of high performing programmers

https://ebellani.github.io/blog/2023/rec-sel-programmers/
1•b-man•5m ago•0 comments

8BBS: A Forgotten Primary Source (2017)

https://wrestlinggnon.com//hacking/2017/09/25/8bbs-a-forgotten-primary-source.html
1•surprisetalk•5m ago•0 comments

New agentic coding SOTA models

https://twitter.com/ornith_/status/2070148887067963854
2•kathyxiao•5m ago•1 comments

VRAM Ghost Busting: Who You Gonna Close()?

https://hcompany.ai/vram-ghost-busting-who-you-gonna-close
1•zhwu•6m ago•0 comments

The Library of Congress and AI for Libraries, Archives and Museums

https://blogs.loc.gov/thesignal/2026/06/library-of-congress-and-ai4lam/
1•geox•6m ago•0 comments

Most of an agent codebase is not the agent

https://blogs.jaseci.org/blog/posts/building-agentic-ai-with-jac
2•jayanaka98•6m ago•0 comments

Ford rehires 350 engineers after AI fails to preserve expertise or train juniors

https://www.bloomberg.com/news/articles/2026-06-25/ford-has-been-rehiring-quality-inspectors-afte...
3•alanwreath•7m ago•2 comments

Show HN: Navatala GPU – multi-back end GPU kernels and Python bindings

https://github.com/navatala-systems/navatala_gpu
1•bvenkat•7m ago•0 comments

Iran: Israel Killed "Handala" Head Hacker

https://www.c14news.com/article/1470451
1•speckx•8m ago•0 comments

Layoffs Hit Bungie 'Including Most of the Destiny Team and Some Marathon' Devs

https://kotaku.com/mass-layoffs-have-started-at-bungie-following-the-end-of-destiny-2-2000710506
1•endianswap•8m ago•0 comments

Our Kubernetes Operator Didn't Scale, So We Rebuilt It

https://infisical.com/blog/kubernetes-operator-rebuild
1•FinnLobsien•9m ago•0 comments

Ask HN: What is the most expensive part of running Postgres at your company?

1•startpgstartup•9m ago•0 comments

Show HN: Candidates Tracking Demo

https://www.hiretale.com/#interactive-demo
1•jainvivek•9m ago•0 comments

Why directory jumpers should use exponential moving sums instead of frecency

2•jghub•12m ago•0 comments

How do you discover useful web apps these days?

https://unstore.io
1•s_a_r_a•13m ago•0 comments

Show HN: Give your pet its own corner of the internet

https://www.hii.pet
6•brevn•13m ago•1 comments

People of New Zealand Artist Sam Moore (2018)

https://www.rnz.co.nz/national/programmes/afternoons/audio/2018671533/people-of-new-zealand-artis...
1•Michelangelo11•13m ago•0 comments

The View Layer Rails Couldn't See

https://davidslv.uk/2026/06/24/the-view-layer-rails-couldnt-see.html
1•thunderbong•15m ago•0 comments

False Earth

https://false-earth.mingjyunhung.com/
2•lovegrenoble•16m ago•0 comments

Fable 5 wrote a Windows kernel in 38 minutes

https://tolmo.com/blog/when-the-model-writes-the-kernel/
2•decide1000•16m ago•1 comments

Do Babies Dream of Baby Sheep?

https://devz.cl/posts/do-babies-dream-of-electric-sheep/
1•DanielVZ•18m ago•0 comments

The Shape of the System

https://shapeofthesystem.com/
3•charlieirish•18m ago•1 comments

Floating Point Math

https://0.30000000000000004.com/
2•__rito__•18m 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!