惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
罗磊的独立博客
B
Blog
博客园_首页
A
About on SuperTechFans
有赞技术团队
有赞技术团队
V
V2EX
U
Unit 42
I
InfoQ
IT之家
IT之家
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
H
Help Net Security

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
DuckDB 1.5.3 Adds Quack Client-Server, SQLite Gets Cypher...
soy · 2026-05-23 · via DEV Community

soy

DuckDB 1.5.3 Adds Quack Client-Server, SQLite Gets Cypher Graph Extension

Today's Highlights

This week, DuckDB releases version 1.5.3 with the Quack client-server protocol, enabling concurrent writes for the embedded analytics database. Additionally, the GraphQLite extension brings powerful Cypher-based graph database capabilities directly to SQLite users.

DuckDB 1.5.3: Not an Ordinary Patch Release (DuckDB Blog)

Source: https://duckdb.org/2026/05/20/announcing-duckdb-153.html

DuckDB 1.5.3, despite its "patch release" designation, delivers a substantial update to the popular in-process analytical database. The headline feature is the integration of Quack as a core extension, which fundamentally changes how DuckDB can be deployed. Quack introduces a robust client-server protocol, allowing multiple concurrent writers to interact with a single DuckDB instance. This transforms DuckDB from a purely embedded, single-process database into a more flexible system capable of handling shared data access in distributed environments, while retaining its lightweight, high-performance characteristics.

Beyond Quack, the 1.5.3 release includes numerous other enhancements through its rich extension ecosystem. These likely involve expanded support for various data formats, improved query optimization, and potentially new functions or connectors that bolster DuckDB's role in data ingestion and transformation workflows. For developers and data engineers, this means a more powerful and adaptable tool for in-process analytics, especially for scenarios requiring fast, local data processing or the creation of portable data applications. The continued evolution of DuckDB's extension framework, coupled with core performance improvements, reinforces its growing importance in the modern data stack for both interactive analysis and robust data pipeline components. The ability to manage concurrent writes via Quack is a game-changer for shared data access patterns.

Comment: Quack's promotion to a core extension is huge; it makes DuckDB viable for shared workloads beyond pure embedded analytics, blurring the lines with traditional client-server databases while keeping its speed.

Quack: The DuckDB Client-Server Protocol (DuckDB Blog)

Source: https://duckdb.org/2026/05/12/quack-remote-protocol.html

This blog post introduces Quack, DuckDB's new client-server protocol, marking a significant evolution for the embedded analytical database. Quack enables multiple DuckDB instances to communicate and share data, effectively allowing a client-server setup. This is a crucial development for use cases where concurrent access and shared state are required, moving beyond DuckDB's traditional single-process, embedded model. The protocol is designed with simplicity and DuckDB's performance philosophy in mind, ensuring minimal overhead.

The Quack protocol specifically addresses the need for shared data environments without sacrificing the lightweight nature of DuckDB. It facilitates scenarios where data needs to be accessed and modified by multiple applications or users simultaneously, which was previously a challenge for DuckDB's embedded architecture. The announcement emphasizes Quack's simple design, aiming to integrate seamlessly into existing workflows while providing robust capabilities for remote interaction and concurrent writes. This innovation significantly broadens the application scope for DuckDB, making it suitable for more complex data architectures where a scalable, yet agile, analytical database solution is needed. It showcases DuckDB's commitment to evolving beyond a purely in-process tool while maintaining its core strengths.

Comment: Quack's approach to client-server for DuckDB is pragmatic; it opens up entirely new use cases for collaboration and shared data without requiring a heavy external server infrastructure.

GraphQLite: An SQLite Extension for Graph Database Capabilities (r/database)

Source: https://reddit.com/r/Database/comments/1tkdqut/need_a_lightweight_graph_visualizer_for/

The news item highlights GraphQLite, an innovative SQLite extension that imbues the popular embedded database with graph database functionalities. By integrating the Cypher query language, GraphQLite allows users to perform complex graph traversals and manipulations directly within their SQLite databases. This development is particularly significant for developers who require lightweight, embedded solutions with advanced data relationship modeling capabilities, without the overhead of a dedicated graph database system.

GraphQLite transforms SQLite into a powerful tool for managing interconnected data, making it suitable for applications like social networks, recommendation engines, or knowledge graphs that benefit from graph-native queries. The ability to use Cypher, a widely recognized graph query language, lowers the barrier to entry for developers familiar with graph databases. This extension exemplifies the versatility of SQLite's architecture, demonstrating how it can be extended to support specialized data models and query paradigms. For the SQLite ecosystem, GraphQLite represents a crucial step towards expanding its utility beyond traditional relational data, catering to modern data challenges that demand more flexible and expressive data structures.

Comment: An SQLite extension offering full graph database capabilities via Cypher is a game-changer for embedded applications needing complex relationship querying; it brings powerful analytical patterns to the edge.