frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Spec at Lunch, Game by Eight

https://littletheta.com/field-notes/spec-at-lunch-game-by-eight
1•NickHirras•1m ago•0 comments

DeepSeek v4.1 flash runs 23 seconds/token on a 2020 16gb M1 Mac Mini

https://twitter.com/thefp4brain/status/2098424202168586367
1•ajay-higgs•3m ago•0 comments

USA has 43% of world datacenter power usage; PRC 13%, GER 8%, UK 3%, JPN 2%

https://www.computerweekly.com/news/366642726/IDCA-datacentres-report-Global-concentration-and-th...
1•TMWNN•4m ago•0 comments

Ask HN: How do you (AI researchers) convince yourselves that AI isn't terrible?

1•l2silver•4m ago•0 comments

Pandas Should Go Extinct

https://eddie.codes/posts/pandas-should-go-extinct/
2•__eddie__•7m ago•0 comments

Ask HN: Did Google kill its enterprise workhorse model?

1•waldrews•7m ago•0 comments

Predicate Routing for Native Handling of API Traffic

https://blog.nginx.org/blog/predicate-routing-for-native-handling-of-api-traffic
1•thunderbong•8m ago•0 comments

Google stole open source code without crediting the authors (Artemis/Minitap)

https://www.minitap.ai/blog/i-expected-better-from-google
1•MysteryPancake•10m ago•0 comments

Show HN: Single-file invoice generator that works in the browser

https://merlin-invoice-tool.surge.sh
1•clawforger_mthx•10m ago•0 comments

Profession – Issac Asimov (1957)

https://www.inf.ufpr.br/renato/profession.html
1•xeonmc•11m ago•0 comments

Arguments for Apple enthusiasts whenever an Android user

https://blog.webb.page/WM-103
1•NetOpWibby•12m ago•0 comments

Backchannel

https://backchannel.rpediter.com
1•rinuk_k•20m ago•0 comments

Show HN: Next Notes – local dictation, meeting notes, and actions app

https://github.com/spyhack225/next-notes
1•Sergekad0•21m ago•0 comments

Classifying AI Website Fetches on Behalf of Users

https://canonry.ai/blog/classifying-ai-crawlers-user-fetches-server-logs
1•arberx•24m ago•0 comments

The Falling Man (2021)

https://www.esquire.com/news-politics/a48031/the-falling-man-tom-junod/
1•fraXis•29m ago•0 comments

The Environmental Protection Network: About Us

https://www.environmentalprotectionnetwork.org/about/
2•mmooss•31m ago•0 comments

Why are AI agents lying, cheating and coordinating? – Yoshua Bengio

https://yoshuabengio.org/en/publication/why-are-ai-agents-lying-cheating-and-coordinating
3•leonardool•35m ago•0 comments

Senior Russian banker fired after scathing speech on wartime economy

https://www.theguardian.com/world/2026/aug/17/andrei-klepach-russian-banker-fired-warning-economy
5•PeterHolzwarth•37m ago•1 comments

Oracle to Spend an Additional $700M on More Job Cuts

https://www.bloomberg.com/news/articles/2026-09-11/oracle-boosts-layoffs-plan-by-700-million
6•toomuchtodo•38m ago•1 comments

Dynamic Documents as Personal Software (Geoffrey Litt)

https://www.youtube.com/watch?v=MccJdr61xnc
2•henryrobbins00•39m ago•0 comments

Terms.txt: A Consent and Compensation Protocol for Agentic Web Access

https://arxiv.org/abs/2609.11152
1•sbulaev•42m ago•0 comments

Rapidly scaling online storage to serve over 1B ChatGPT users

https://openai.com/index/scaling-storage-one-billion-users-part-one/
1•afr0ck•42m ago•0 comments

Just testing my memory safe web browser

1•pizlonator•44m ago•0 comments

Necker, 1832: "An optical phænomenon on viewing a figure of a geometrical solid"

https://zenodo.org/records/1430991
2•akkartik•47m ago•1 comments

Piper and Solaar kept breaking So I made my own

https://github.com/DonGeronimo7/mouse-control
1•Dongeronimo7•48m ago•0 comments

ATR Rules to Google SecOps Converter for Detection Engineers

https://github.com/ajaynyayapathi/ATR-to-Yara-L-Converter
1•nvajay•49m ago•0 comments

Mini PC Database

https://awesomeminipc.com/
3•Crier1002•55m ago•0 comments

OpenAI: "We use ... de-identified data to improve ChatGPT"

https://twitter.com/markchen90/status/2097400166554993041
3•nycdatasci•58m ago•2 comments

"What Is an 'AI Warning Shot'?" (2024)

https://gwern.net/blog/2024/sydney
1•simonpure•1h ago•0 comments

Show HN: TUI Markdown reader with beeline support

https://github.com/seymores/mdr
1•seymores•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!