frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cisco to buy unit 8200 affiliated company that tracks all your API keys

https://www.timesofisrael.com/us-tech-giant-cisco-buys-israeli-ai-cyber-startup-to-protect-digita...
1•neuroelectron•7m ago•0 comments

Supreme Court signals it may end Cisco human rights suit

https://www.washingtonpost.com/politics/2026/05/02/supreme-court-cisco-torture-china/
1•neuroelectron•9m ago•0 comments

Denial of Service Vulnerability in React Server Components

https://github.com/facebook/react/security/advisories/GHSA-rv78-f8rc-xrxh
1•karimf•11m ago•0 comments

Could Lovable's automatic 10% pay raise be the cure for toxic cultures?

https://techcrunch.com/2026/05/07/could-lovables-automatic-10-pay-raise-be-the-cure-for-toxic-cul...
2•dicksent•12m ago•0 comments

Trump Is Getting Away with Murdering an American Industry

https://heatmap.news/plus/the-fight/spotlight/trump-federal-aviation-administration-wind-farms
2•gok•16m ago•0 comments

I designed Microsoft's EA channel in 2001. It's being dismantled in 2026

https://www.brendanoconnor.net/case-studies/microsoft-enterprise-channel/
1•brendo_y•17m ago•0 comments

Copy Fail 2: Electric Boogaloo

https://github.com/0xdeadbeefnetwork/Copy_Fail2-Electric_Boogaloo
3•larusso•21m ago•0 comments

Tailscale is down

https://status.tailscale.com/incidents/01KR2VHMYPMHVS821CJRD4Q3N9
2•bithavoc•21m ago•0 comments

Ask HN: Does CopyFail make a stronger case for rolling releases such as Arch?

1•fullstacking•25m ago•1 comments

Higher usage limits for Claude and a compute deal with SpaceX

https://www.anthropic.com/news/higher-limits-spacex?id=19234
2•alex_young•29m ago•1 comments

NIST – How Do You Measure It?

https://www.nist.gov/how-do-you-measure-it
1•rramadass•29m ago•1 comments

US will start revoking passports for parents who owe child support

https://apnews.com/article/passports-unpaid-child-support-penalty-state-department-42d90cfa8a06ee...
2•OutOfHere•29m ago•0 comments

Show HN: jj diff review integrated with agents

https://twitter.com/plannotator/status/2052594084527677612
1•ramoz•29m ago•0 comments

Digging into Drama at the Document Foundation

https://lwn.net/Articles/1066418/
1•signa11•29m ago•0 comments

Coming of Age

https://dirt.fyi/article/2026/05/coming-of-age
1•colinprince•30m ago•0 comments

Most bad analytics is a translation problem, not a tooling problem

https://lowhangingdata.com/article/telephone-game-bad-analytics/
1•mryagerr•31m ago•0 comments

Sunburn inspired a new way to store energy

https://www.bbc.com/news/articles/c62l9gnx775o
1•eptityri•33m ago•0 comments

QuickTools Pro – Free browser-based utility suite

https://fascinating-crepe-d7b325.netlify.app/
1•chbayah•36m ago•0 comments

Am I over reacting?

https://talkboy.org/s/DgwuLPHR
1•reieicucv•38m ago•0 comments

Guitar tuner that uses phone accelerometer

https://tautme.github.io/phone-sensors/accel-tuner.html
2•adm4•38m ago•1 comments

Life Layering

https://longevity.stanford.edu/michael-clinton-on-life-layering/
1•andsoitis•43m ago•0 comments

Utah data center: Projected daily heat equivalent to 23 atomic bombs

https://www.abc4.com/news/northern-utah/box-elder-data-center-heat-atomic-bombs/
5•WarOnPrivacy•44m ago•5 comments

New York state set to ban law enforcement, including ICE, from wearing masks

https://www.reuters.com/legal/government/new-york-state-set-ban-law-enforcement-including-ice-wea...
20•tartoran•45m ago•3 comments

AWS says data center overheating in North Virginia disrupts services

https://www.reuters.com/business/retail-consumer/amazon-cloud-unit-says-data-center-overheating-n...
6•christhecaribou•49m ago•1 comments

Replit's Amjad Masad on Cursor deal, Apple fight, and why he'd rather not sell

https://techcrunch.com/2026/05/01/replits-amjad-masad-on-the-cursor-deal-fighting-apple-and-why-h...
1•gmays•52m ago•0 comments

Sley is live: the first native AI programming language

https://github.com/GreyforgeLabs/sley
1•Greyforge•55m ago•2 comments

Evaluating Geekbench 6

https://chipsandcheese.com/p/evaluating-geekbench-6
1•wmf•1h ago•0 comments

Canadian sues DHS over alleged Google data grab tied to social media posts

https://www.cbc.ca/news/world/us-dhs-aclu-lawsuit-canadian-john-doe-9.7187851
4•cdrnsf•1h ago•1 comments

How to Generate Terraform from Existing AWS Resources

https://www.ops0.com/blog/generate-terraform-from-existing-aws-resources
1•sureshpaulchamy•1h ago•0 comments

Worlds first OptoSAR Satellite launched

https://www.indiatoday.in/science/story/galaxeye-mission-drishti-optosar-satellite-launch-india-p...
3•raks619•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!