frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

US irks G20 ministers by bringing back Russia, barring journalists

https://www.reuters.com/world/china/g20-host-us-pushes-growth-agenda-allay-debt-market-concerns-2...
1•vrganj•45s ago•0 comments

Trump Mocks Data-Center Opponents as Wanting to Stay 'Backwards and Poor'

https://www.nytimes.com/2026/08/31/us/politics/trump-data-centers.html
4•dkobia•6m ago•0 comments

Banned Books – Analysis of Censorship on Amazon.com

https://citizenlab.ca/research/analysis-of-censorship-on-amazon-com/
1•robtherobber•7m ago•0 comments

Bespoke Synth: open-source modular synthesizer/DAW for Linux, Mac & Windows

https://www.bespokesynth.com/
1•negura•7m ago•0 comments

I Built an Agent Harness to See What's Inside

https://mamonas.dev/posts/agent-harness-to-see-whats-inside/
1•konmam•9m ago•0 comments

Bumping the major version of your JavaScript library is user hostile

https://yob.id.au/2026/09/01/major-version-bumps.html
1•jhealy•14m ago•0 comments

Dissemination of IT for the Promotion of Materials Science (DoITPoMS)

https://www.doitpoms.ac.uk/index.php
1•nill0•17m ago•0 comments

Vice City style FM radio for indie hackers: house, lofi, techno

https://shipfm.online/
1•robsanna•18m ago•0 comments

Google Search Console Data with Grok?

https://www.gscwizard.com/connect-google-search-console-to-grok.html
1•jwbobbink•20m ago•0 comments

Atlassian's own AI assistant doesn't know Jira renamed "Projects" to "Spaces"

https://community.atlassian.com/forums/Jira-articles/Jira-Spaces-have-landed/ba-p/3117620
1•vlad-asis•21m ago•0 comments

China's Program to Keep Activists in Check

https://web.archive.org/web/20181217170219/https://www.newyorker.com/magazine/2018/12/24/chinas-b...
2•firefax•21m ago•0 comments

Breaking Execution Continuity of Agent Systems via Rollback

https://arxiv.org/abs/2608.29381
1•sbulaev•23m ago•0 comments

Holotypic Occlupanid Research Group

https://www.horg.com/
1•peterburkimsher•27m ago•0 comments

Show HN: Edify – a Windows NLE with local AI subtitles/dubbing and OpenFX

https://apps.microsoft.com/detail/9nkkk5k5s4ct?hl=en-US&gl=US
1•edify_nle•30m ago•0 comments

The US military gets its own ChatGPT today

https://www.defenseone.com/technology/2026/08/us-military-chatgpt/415719/
1•r_singh•31m ago•0 comments

Guest Posting Sites: A Practical Guide for Building Quality Backlinks

https://go.fliplink.me/view/GuestPostingSitesAPracticalGuideforBuildingQualityBacklinks
1•reviewhub•33m ago•0 comments

Trump admin shelves Cyclospora research despite record-breaking outbreak

https://arstechnica.com/health/2026/08/trump-admin-shelves-cyclospora-research-despite-record-bre...
4•khalic•38m ago•3 comments

Generating personalized certificates from Excel in the browser

https://bulkcerts.com/
1•febeee•38m ago•0 comments

Qualcomm Raising Chip Prices Starting Tomorrow

https://www.macrumors.com/2026/08/31/qualcomm-chip-price-increase/
2•tosh•39m ago•0 comments

A Response to Aeon's "How Art Invented Humanity"

https://cathalharte.ch/essay-the-truth-of-accountants.html
1•cathalharte•42m ago•0 comments

Indictments against a top extremism researcher and the SPLC

https://theconversation.com/indictments-against-a-top-extremism-researcher-and-the-splc-force-a-r...
5•osadalakmal•44m ago•1 comments

Prices of 4,923 food and drink items set to rise in September, extending trend

https://www.japantimes.co.jp/business/2026/08/31/companies/food-price-rise-september/
1•quyleanh•45m ago•1 comments

Remix 3 Release Candidate

https://remix.run/blog/remix-3-release-candidate
1•osener•47m ago•0 comments

Inevitability

https://borretti.me/article/on-inevitability
1•varjag•47m ago•0 comments

Data Science in the Age of AI

https://www.robinlinacre.com/data_science_age_ai/
1•RobinL•48m ago•0 comments

Show HN: Give your agent somewhere to think loud watch its decisions unfold live

https://github.com/softcane/agents-workbook
1•pradeep1177•50m ago•1 comments

ToolTrim, ecide which SaaS tools to keep, replace, or add

https://tooltrim.com/en
1•mblochmic•50m ago•0 comments

AI product management: Familiar enough to start, different enough to fail

https://www.leadinginproduct.com/p/ai-product-management
1•benkan•53m ago•0 comments

Proxmox VE 7.0–8.0.3: unauthenticated, single-request root auth bypass

https://blog.nathangolez.com/2026/08/proxmox-ve-7-08-0-3-unauthenticated-single-request-root-auth...
1•neeythann•53m ago•0 comments

OpenMPTCProuter v0.64.1 – multi-WAN aggregation with Multipath TCP

https://www.openmptcprouter.com/
1•OpenMPTCProuter•58m 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!