frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Work Runs on Different Maps

https://yusufaytas.com/the-work-runs-on-different-maps
1•yusufaytas•3m ago•0 comments

Lessons from running 14 AI agents in production for 6 months

https://orgtp.com/blog/the-weight-is-wrong-without-it
1•dsteel•9m ago•0 comments

Ask HN: How can I support the AI resistance movement financially?

4•roschdal•10m ago•1 comments

I built a simple uptime monitoring tool focused on fewer false alerts

https://pulsorup.com/
1•shura_dev•12m ago•1 comments

Defending Our Consciousness Against the Algorithms

https://nautil.us/defending-our-consciousness-against-the-algorithms-1279260
2•Brajeshwar•14m ago•0 comments

Accelerating Medical Treatments for Serious Mental Illness

https://www.whitehouse.gov/fact-sheets/2026/04/fact-sheet-president-donald-j-trump-is-acceleratin...
1•bkudria•16m ago•0 comments

How are you getting your first 100 paying teams for a Slack/Google Chat tool?

https://www.indiehackers.com/post/how-are-you-getting-your-first-100-paying-teams-for-a-slack-goo...
1•nehaagoyal•17m ago•0 comments

CrossOver 26.1 released for Linux and macOS

https://old.reddit.com/user/Wine_Reviews/comments/1sp6xl3/crossover_261_released_for_linux_and_mac/
1•twickline•18m ago•0 comments

The cost of inconsistent standups (and how we fixed it)

https://www.indiehackers.com/post/the-hidden-cost-of-inconsistent-standups-and-how-we-fixed-it-wb...
1•nehaagoyal•18m ago•0 comments

OpenAI Pulls Back from Stargate Norway Data Center Deal as Microsoft Takes Over

https://www.cnbc.com/2026/04/15/openai-stargate-norway-project-microsoft.html
1•ninjahawk1•18m ago•0 comments

Hyperloom – A concurrent state broker and time-travel debugger for AI

1•debabhishek•19m ago•0 comments

Xata OSS: Postgres platform with branching, now Apache 2.0

https://xata.io/blog/open-source-postgres-branching-copy-on-write
1•mebcitto•20m ago•0 comments

Letting Bots Learn to Move Like Players

https://remvst.substack.com/p/letting-bots-learn-to-move-like-players
1•riidom•23m ago•0 comments

macOS Notifications for Claude Code and AeroSpace

https://kulikalov.com/claude-code-aerospace-notifications/
1•kulikalov•26m ago•0 comments

Up There with Carnegie

https://superconnectorbook.com/
1•Chrisszz•26m ago•0 comments

Show HN: Deadline.email – a daily reminder that you'll die

https://deadline.email
1•onesandofgrain•27m ago•0 comments

The Government Blacklisted the Best AI. It Came Back with the Same Red Lines

https://liminaldr.substack.com/p/the-government-tried-to-blacklist
1•BlendedPanda•29m ago•1 comments

Ask HN: What's Your Daily Routine?

1•chistev•30m ago•3 comments

Show HN: Anya – Offline static malware analysis (Rust)

https://github.com/elementmerc/anya
1•ElementMerc•36m ago•0 comments

Anchormd – Generate AI coding agent context files from any GitHub repo

https://anchormd.dev
1•aretedriver•37m ago•0 comments

The LMAX Architecture

https://martinfowler.com/articles/lmax.html
2•tosh•44m ago•1 comments

Why insects aren't huge: a new challenge to a decades-old idea

https://www.nature.com/articles/d41586-026-00976-0
2•marojejian•45m ago•1 comments

Hardware Is Hard?

https://prdpx7.github.io/posts/hardware-is-hard/
3•prdpx7•46m ago•1 comments

Show HN: JSON-logic-path – JSON logic with jsonpath multi-value resolution

https://github.com/bayinfosys/json-logic-path
1•anax32•46m ago•1 comments

Corporate Profits Are at Record Highs. These 4 Factors Could Sink Them

https://www.nytimes.com/2026/04/18/business/dealbook/corporate-profits-record.html
2•jhonovich•47m ago•0 comments

Why Mechanical Sympathy? (2011)

https://mechanical-sympathy.blogspot.com/2011/07/why-mechanical-sympathy.html
1•tosh•48m ago•0 comments

Only Law Can Prevent Extinction

https://www.lesswrong.com/posts/5CfBDiQNg9upfipWk/only-law-can-prevent-extinction
2•namanyayg•48m ago•0 comments

How Long Can You Keep Peptides After Reconstitution?

https://lifeimprovementschemes.substack.com/p/how-long-can-you-keep-peptides-after
1•BenPace•48m ago•1 comments

The Fermi Paradox Is Nerdslop

https://monismos.substack.com/p/the-fermi-paradox-is-nerdslop
1•BenPace•49m ago•0 comments

I've Been Trying to Delay the Industrial Revolution (and I'm Failing)

https://lostfutures.substack.com/p/ive-been-trying-to-delay-the-industrial
1•BenPace•49m 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•11mo ago

Comments

semihs•11mo 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_•11mo 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•11mo 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_•11mo ago
That sounds great!