frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The debit card faded as UPI rose, the credit card didn't

https://timeseriesofindia.com/economy/reads/credit-vs-debit/
1•intelkishan•28s ago•0 comments

Tanizaki Jun'ichirō: Tracing the evolution of Japanese aesthetic beauty

https://www.nippon.com/en/japan-topics/b07236/
1•whiteblossom•6m ago•0 comments

Harvey LAB-AA: evaluating AI agents on real-world legal work

https://artificialanalysis.ai/articles/harvey-lab-aa
1•theanonymousone•11m ago•0 comments

Truvace – tracking AI's real-world impact with sourced reporting

https://truvace.com
1•mosisaSaba•11m ago•0 comments

Meta's AI advertising dreams have become a nightmare for brands

https://www.businessinsider.com/metas-ai-ads-push-causes-chaos-for-brands-2026-7
1•vrganj•13m ago•0 comments

Show HN: Rqshc – A C++/x64 assembly image compressor with its own RQI format

https://github.com/Eiryou/rqshc-image-compressor
1•Hide_AI_Awake•14m ago•0 comments

System call instrumentation on Linux/x86-64 using memory-indirect calls

https://www.humprog.org/~stephen/blog/2026/07/13/#system-call-instrumentation-on-intel-negative-r...
1•matt_d•15m ago•1 comments

2026 Fields Medal List Accidentally Leaked

https://old.reddit.com/r/math/comments/1urv4id/comment/oxak6mc/
2•whwhyb•17m ago•1 comments

Just Let Me Write Digits

https://gendx.dev/blog/2026/07/13/input-digits.html
2•brandon_bot•22m ago•0 comments

Bidirectional Elaborators à la Carte

https://arxiv.org/abs/2607.09564
2•matt_d•26m ago•0 comments

HaikuOS now has Nvidia graphics acceloration

https://www.youtube.com/watch?v=BwBIoXNDsRo
4•cable2600•28m ago•0 comments

$9.99 Became the Most Compelling Price in Retail

https://www.wsj.com/business/retail/how-9-99-became-the-most-compelling-price-in-retail-ad54da92
4•petethomas•31m ago•0 comments

The ancient Roman dodecahedron may not have been Roman [video]

https://www.youtube.com/watch?v=uhH1xng9RFY
2•profsummergig•32m ago•0 comments

Asimov: NeuroSymbolic Adversarial Generation of Ethic Axioms

https://parrotsbasilisks.substack.com/p/asimov-neurosymbolic-adversarial
2•elalber2000•35m ago•0 comments

The Future of Software Factories Is Multiplayer

https://www.anantjain.xyz/posts/the-future-of-software-factories-is-multiplayer
2•handfuloflight•39m ago•0 comments

US uses sea drones in combat in Iran strikes

https://breakingdefense.com/2026/07/in-first-us-uses-sea-drones-in-combat-in-iran-strikes-centcom/
3•OutOfHere•41m ago•0 comments

Everybody Should Welcome Nationalizing AI

https://jacobin.com/2026/07/ai-nationalization-sanders-libertarians-property
2•one33seven•44m ago•1 comments

Cash is king again at Tokyo's bars after credit processor fails

https://www.japantimes.co.jp/business/2026/07/14/companies/zentoshin-kabukicho-bar-cash/
5•decimalenough•45m ago•0 comments

Ask HN: What critical legacy system at work is everyone afraid to touch?

2•jerrycat101•49m ago•1 comments

Show HN: Clocks.dev – Collection of Clock Designs

https://clocks.dev
1•levmiseri•50m ago•0 comments

Automate TypeScript Refactors with Dosido

https://jaredforsyth.com/posts/dosido-release/
1•jaredly•52m ago•0 comments

I turned my bearblog into a text based adventure

https://peaceful.bearblog.dev
1•Peacefulz•56m ago•1 comments

The GUARD Act would sacrifice privacy and parental rights

https://reason.org/backgrounder/the-guard-act-would-sacrifice-privacy-and-parental-rights/
2•mdp2021•57m ago•0 comments

OpenAI's Ad Business Is on Pace to Miss Its Own Forecast by 90%, Analyst Says

https://www.adweek.com/media/openais-ad-business-is-on-pace-to-miss-its-own-forecast-by-90-analys...
9•EvgeniyZh•59m ago•0 comments

Ask HN: How could a startup stand a chance when Reddit won't even let you post?

2•SecureChats•1h ago•1 comments

The Martian Ideology

https://www.nplusonemag.com/issue-52/reviews/the-martian-ideology/
1•arutar•1h ago•0 comments

Ask HN: Why are so many accomplished founders joining Anthropic?

3•guru3s•1h ago•3 comments

Altera returns to growth as AI, robotics fuel demand, CEO says

https://www.reuters.com/business/altera-returns-growth-ai-robotics-fuel-demand-ceo-says-2026-07-10/
1•adithyaharish•1h ago•0 comments

Why We're Dismantling the International Criminal Court

https://www.wsj.com/opinion/why-were-dismantling-the-icc-0af0a8a6
5•andsoitis•1h ago•5 comments

Turso v0.7.0

https://turso.tech/blog/turso-0.7.0
2•ms7892•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!