frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google Spanner On-Prem (Spanner Omni)

https://cloud.google.com/products/spanner/omni
1•alpb•3m ago•0 comments

Show HN: SigmaLifting CLI – helping agents understand strength training

https://sigmalifting.app/
1•jklioewr•5m ago•0 comments

Foundational aspects of spinor structures and exotic spinors(2025)

https://arxiv.org/abs/2502.15471
1•rolph•8m ago•0 comments

What Managerial Economics can tell us about AI and Software Development

https://www.germanvelasco.com/blog/managerial-economics-ai-and-software-development
1•germsvel•8m ago•0 comments

Kraken Scales Serverless to Balance the National Grid (InfoQ) [video]

https://www.youtube.com/watch?v=RwgcvPWjXmg
1•zeristor•10m ago•1 comments

Agents Aren't Coworkers, Embed Them in Your Software

https://www.feldera.com/blog/ai-agents-arent-coworkers-embed-them-in-your-software
2•gz09•15m ago•0 comments

Aprendendo Inglês Com IA

https://fluencycraft.com/
2•carloscsc•16m ago•1 comments

Bees Change Color with the Weather

https://nautil.us/these-bees-change-color-with-the-weather-1280222
2•Brajeshwar•17m ago•0 comments

How Copenhagen built a metro for free (The Flying Moose) [video]

https://www.youtube.com/watch?v=GzamwVH3CXU
2•zeristor•17m ago•1 comments

Show HN: I built a PyPI watchdog that tests whether packages work

https://sovereignmail.org/pypiplace
1•contentist•18m ago•0 comments

IronBCI-32: 32-Channel 24-Bit EEG for BCI Research

https://hackaday.io/project/205585-ironbci-32-32-channel-24-bit-eeg-for-bci-research
2•Christiangmer•18m ago•0 comments

Microfiche, Microfilm and Other Minutiae (1981) [video]

https://www.youtube.com/watch?v=Q6P9FhSkd0I
1•susam•19m ago•0 comments

The most successful health campaign in modern history

https://www.msn.com/en-us/health/other/the-most-successful-health-campaign-in-modern-history/ar-A...
1•RickJWagner•20m ago•0 comments

DeepSeek-V4 on Day 0: From Fast Inference to Verified RL with SGLang and Miles

https://www.lmsys.org/blog/2026-04-25-deepseek-v4/
1•mji•25m ago•0 comments

Understanding the short circuit in solid-state batteries

https://www.mpie.de/5151287/short-circuit-solid-state-batteries
1•hhs•26m ago•0 comments

Uranus's Outermost Rings Are Made of Two Different Things

https://skyandtelescope.org/astronomy-news/uranuss-outermost-rings-are-made-of-two-different-things/
1•mooreds•27m ago•0 comments

Boulder's water supply hangs on for now amid historic drought conditions

https://boulderreportinglab.org/2026/04/23/boulders-water-supply-hangs-on-for-now-amid-historic-d...
2•mooreds•28m ago•0 comments

Once a Year, Seattle Center Becomes a Medical Clinic

https://www.thestranger.com/news/once-a-year-seattle-center-becomes-a-medical-center/
1•mooreds•28m ago•0 comments

Your Name in Landsat

https://science.nasa.gov/specials/your-name-in-landsat/
1•susam•30m ago•0 comments

Her Life Savings Mysteriously Disappeared After a Systems Glitch

https://www.nytimes.com/2026/04/25/your-money/fidelity-investments-fraud-alert.html
4•danso•37m ago•1 comments

Steak 'n Shake: We're going 'back to the glory days of fast food'

https://thehill.com/business/5848987-steak-n-shake-healthy-ingredients/
3•tolerance•38m ago•2 comments

Show HN: Rethinking browser tabs to treat too many tabs open

https://github.com/moogacs/tabby
1•moogas•38m ago•0 comments

Marc Andreessen on how the internet changed news, politics, and outrage [video]

https://www.youtube.com/watch?v=82HsvG1_Nqk
1•hhs•39m ago•0 comments

I reverse-engineered Claude Desktop's storage to give it memory

https://github.com/Foued-pro/Mnemos
2•foufouadi•40m ago•0 comments

An interesting OpenAI Codex Q&A

1•paulbernard•41m ago•0 comments

Show HN: Ruosh,full-text search library in Python backed by Tantivy

1•bisgh•43m ago•1 comments

Interactive browser-based web archiving from Webrecorder

https://archiveweb.page/
1•doener•48m ago•0 comments

EFF Challenges Secrecy in Eastern District of Texas Patent Case

https://www.eff.org/deeplinks/2026/04/eff-challenges-secrecy-eastern-district-texas-patent-case
2•Brajeshwar•1h ago•0 comments

Pi in the Sky (2016)

http://www.piinthesky.co/
1•radeeyate•1h ago•0 comments

Simulating and Evaluating Agentic Systems

https://www.gojiberries.io/simulating-and-evaluating-agentic-systems/
1•neehao•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_•12mo 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•12mo 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_•12mo ago
That sounds great!