frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Impacts of Unauthorized Immigration on U.S. Labor and Housing Markets

https://www.dallasfed.org/research/papers/2026/wp2607
1•nradov•12m ago•0 comments

Enterprise AI customers pulling back from OpenAI and Anthropic as costs mount

https://qz.com/enterprise-ai-spending-openai-anthropic-roi-pullback-062626
1•toomuchtodo•15m ago•3 comments

Compiler Education Deserves a Revolution

https://thunderseethe.dev/posts/compiler-education-deserves-a-revoluation/
1•azhenley•16m ago•0 comments

I Co-Founded Wikipedia. Now I'm Banned for Life

https://www.thefp.com/p/larry-sanger-wikipedia-co-founder-banned
4•bko•17m ago•2 comments

Show HN: Tested – AI Tools Scored by a Panel of LLMs (Claude, GPT, Gemini, Grok)

https://trytested.com
1•pro_methe5•19m ago•0 comments

What's the value of the Biblical half shekel?

https://www.chabad.org/library/article_cdo/aid/673063/jewish/Whats-the-value-of-the-biblical-half...
1•teleforce•20m ago•0 comments

Show HN: GetBlocked – a local-only Chrome extension for blocking web trackers

https://github.com/alex-w-developer/GetBlocked/
6•sudo_cowsay•24m ago•3 comments

Indus civilisation reveals its volumetric system

https://www.thehindu.com/news/national/Indus-civilisation-reveals-its-volumetric-system/article16...
1•teleforce•26m ago•0 comments

Evolving the Node.js Release Schedule

https://nodejs.org/en/blog/announcements/evolving-the-nodejs-release-schedule
1•thunderbong•27m ago•0 comments

Greatgramps: A static site generator for GRAMPS family trees

https://bennuttall.com/blog/2026/06/greatgramps/
1•benn_88•29m ago•0 comments

Join .agent – Pre-Register Your Domain Free

https://agentcommunity.org/join
2•Anon84•36m ago•0 comments

The State of the AI Economy

https://intelligence.exponentialview.co/
2•marc__1•36m ago•0 comments

How a Star Wars Lego Dispute Triggered an Armed Police Raid in Utah

https://www.wsj.com/us-news/how-a-star-wars-lego-dispute-triggered-an-armed-police-raid-in-utah-c...
1•fortran77•36m ago•1 comments

Building While Becoming

https://pushapaula.substack.com/
2•paulawp•38m ago•0 comments

The Supreme Court's Era of Meaningless Rights

https://www.theatlantic.com/ideas/2026/06/supreme-court-decisions-unenforceable-rights/687713/
1•paulpauper•40m ago•0 comments

Show HN: I scanned 87 MCP servers for agent-authority hygiene – leaderboard

https://capframe.ai/leaderboard
1•euan21•41m ago•1 comments

Show HN: Hacker News on a Train Station Style Flip Board

https://popflame.quickish.space/hn-flipboard/
1•PaybackTony•42m ago•1 comments

The Duck Is Growing

https://gemenergyanalytics.substack.com/p/the-duck-is-growing
1•paulpauper•44m ago•1 comments

The State of the AI Economy

https://www.exponentialview.co/p/the-state-of-the-ai-economy
1•paulpauper•44m ago•0 comments

The formation of human populations in South and Central Asia

https://www.science.org/doi/10.1126/science.aat7487
1•teleforce•50m ago•0 comments

Show HN: Hatchr – Share Claude Designs with a public link

https://www.hatchr.link/
1•othmanosx•50m ago•0 comments

Show HN: Noise Lang, JIT stochastic programming language in Rust

https://noiselang.com/
1•manucorporat•51m ago•0 comments

PrismLib – semantic LLM cache and cluster mesh that cuts token spend

https://github.com/insightitsGit/prismlib
2•insightits•51m ago•0 comments

Economists have pushed for prediction markets. They're not what they'd hoped for

https://www.cnn.com/2026/06/21/business/prediction-markets-economists
1•JumpinJack_Cash•52m ago•1 comments

Routing for serverless servers with Pingora, Envoy, and Spanner

https://modal.com/blog/serverless-servers
2•birdculture•54m ago•0 comments

EU Trade Explorer

https://tradedashboard.eu/
1•abracadabrapouf•55m ago•1 comments

Utility for Multi-GPU Node Configuration

https://github.com/rghosh08/nvidia-nvswitch-setup/releases/tag/v0.1.0
2•rghosh8•59m ago•0 comments

Chief Mouser to the Cabinet Office

https://en.wikipedia.org/wiki/Chief_Mouser_to_the_Cabinet_Office
2•modzu•1h ago•0 comments

Build, Don't Posture

https://entertainmentindustry.ai/
3•DavidFrangiosa•1h ago•1 comments

We are capitalist, not socialist

https://www.thepromisetoamerica.com
5•donsupreme•1h ago•8 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!