frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Morsel-Driven Parallelism: A NUMA-Aware Query Evaluation Framework [pdf]

https://15721.courses.cs.cmu.edu/spring2016/papers/p743-leis.pdf
1•ksec•32s ago•0 comments

Amiga OS (UAOS)

https://github.com/stevereaver/uaos
1•doener•4m ago•0 comments

Show HN: My queue model made in a game

1•Lluis_0x•4m ago•0 comments

TestFlight for Steam

https://userplay.io/
1•0xnyn•8m ago•0 comments

What if you could build your SaaS without paying upfront?

https://www.indiehackers.com/post/what-if-you-could-build-your-saas-without-paying-upfront-908423...
1•AutFlowStudio•9m ago•0 comments

Keep It Up – Cookie Clicker, for Uptime

https://simpleobservability.com/games/keep-it-up
1•khazit•11m ago•0 comments

Young people don't trust AI – or the billionaires that tell us we should love AI

https://www.techradar.com/pro/young-people-increasingly-dont-trust-ai-or-the-billionaires-that-ke...
2•ksec•13m ago•0 comments

RVA23 vs. ARMv9 a Small Experiment

https://gist.github.com/camel-cdr/3a7aed17e017e8cab675ad696c7d14af
2•birdculture•14m ago•0 comments

Schism Tracker

https://schismtracker.org/
2•Bluestein•17m ago•0 comments

Show HN: The Data Forge – Generate up to 100K rows of JSON/CSV/SQL test data

https://zlvox.com/tools/data-forge
1•zlvox•18m ago•0 comments

Show HN: Customhouse – deterministic MCP proxy that blocks agent exfiltration

https://github.com/vineetpant/customhouse
1•vineetpant•23m ago•1 comments

SSOG: Near linear Visual-Attention that doesn't score but steers

https://www.pisoni.ai/posts/ssog/
1•4rtemi5•24m ago•2 comments

Bubblewrap is the only sandbox you need

https://lorentz.app/blog-item.html?id=bubblewrap
1•baalimago•25m ago•0 comments

Bay Area House Party

https://www.astralcodexten.com/p/the-foothills-of-bay-area-house-party
1•sgt101•27m ago•0 comments

Why travellers are obsessed with foreign supermarkets

https://www.bbc.com/travel/article/20260811-the-supermarket-is-becoming-a-tourist-attraction
1•edward•29m ago•0 comments

The Economist Who Predicted 2008 Crash Says AI Bubble Bursts Soon – Steve Keen [video]

https://www.youtube.com/watch?v=nx5FiWfD5U4
1•SockThief•31m ago•2 comments

Public preview runtimes on AWS Lambda: Node.js 26 and Python 3.15

https://aws.amazon.com/blogs/compute/introducing-public-preview-runtimes-on-aws-lambda-starting-w...
1•lumpa•32m ago•0 comments

What Is Reinforcement Learning

https://www.mathworks.com/discovery/reinforcement-learning.html
1•teleforce•36m ago•0 comments

Is Software Still the Point?

https://janbosch.com/field-notes-is-software-still-the-point/
2•ftomassetti•36m ago•0 comments

Beau­tiful Racket: Intro­duc­tion to language-oriented program­ming using Racket

https://beautifulracket.com/
1•signa11•40m ago•0 comments

Ask HN: Where to learn software engineering fundamentals?

1•mstank•40m ago•0 comments

US Navy 3D prints combat-ready drones and parts aboard during exercise

https://www.tomshardware.com/tech-industry/drones/flight-ready-drones-3d-printed-and-built-on-air...
1•giuliomagnifico•40m ago•0 comments

Show HN: Online FPS Test

https://fpstest.co/
2•artiomyak•41m ago•0 comments

The Two Factions of C++

https://herecomesthemoon.net/2024/11/two-factions-of-cpp/
1•signa11•42m ago•0 comments

App to detect and report potholes in Bengaluru

https://twitter.com/VaibhavSisinty/status/2088702363867742365
1•rohitpaulk•43m ago•0 comments

Show HN: RNet – AI token service provider

2•nextma•43m ago•0 comments

Remaking Party House

https://herecomesthemoon.net/2026/08/remaking-party-house/
1•signa11•44m ago•0 comments

Narrate Complete Books Using Qwen3 TTS, Natural Sounding

https://github.com/drmhse/tts-rs
1•drmhse•47m ago•0 comments

White House authorizes private companies to launch hack-back cyberattacks

https://www.tomshardware.com/tech-industry/cyber-security/white-house-authorizes-private-companie...
1•sbulaev•48m ago•0 comments

Science at LLM Speed

https://christophermeiklejohn.com/series/the-machine-in-the-lab/science-at-llm-speed/
1•jruohonen•48m ago•1 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!