小红花·文摘
  • 首页
  • 广场
  • 排行榜🏆
  • 直播
  • FAQ
Dify.AI
Nvidia, Palantir, Hugging Face join 34 others in race to defend open-weight AI from cyber threats

The current maelstrom of discussion surrounding the use of open-source software and open-weight AI models appears to be splitting opinion The post Nvidia, Palantir, Hugging Face join 34 others in...

Nvidia, Palantir, Hugging Face join 34 others in race to defend open-weight AI from cyber threats

The New Stack
The New Stack · 2026-07-27T09:00:00Z
Elastic and Deductive AI join forces to accelerate agentic incident investigation for engineering teams

Today, Elastic announced that it has entered into an agreement to acquire Deductive AI, an AI-powered investigation platform that helps engineering teams identify and resolve production issues faster.

Elastic and Deductive AI join forces to accelerate agentic incident investigation for engineering teams

Elastic Blog - Elasticsearch, Kibana, and ELK Stack
Elastic Blog - Elasticsearch, Kibana, and ELK Stack · 2026-07-22T00:00:00Z
David Vélez and Robin Vince join the boards of the OpenAI Foundation and OpenAI Group PBC

David Vélez and Robin Vince join the boards of the OpenAI Foundation and OpenAI Group PBC, bringing global leadership in finance, technology, and governance.

David Vélez and Robin Vince join the boards of the OpenAI Foundation and OpenAI Group PBC

OpenAI
OpenAI · 2026-07-21T00:00:00Z

You are rarely the only thing writing your SQL. Your ORM writes some of it, your nested views write more, and sooner or later one of them joins a table to itself on its own primary key. That join...

Christophe Pettus: All Your GUCs in a Row: enable_self_join_elimination

Planet PostgreSQL
Planet PostgreSQL · 2026-07-10T01:00:00Z

Partitionwise join decomposes big joins into smaller per-partition pairs when both tables partition on the join key—but only if you enable it and meet strict…

Christophe Pettus: All Your GUCs in a Row: enable_partitionwise_join

Planet PostgreSQL
Planet PostgreSQL · 2026-07-08T01:00:00Z

本文探讨了多表连接的优化策略,包括连接顺序、物理连接算子和分布式连接方法。重点分析了DuckDB和Trino的连接规划,比较了Hash Join和Merge Join的性能,并介绍了动态分区裁剪(DPP)和数据倾斜问题的解决方案。最后,总结了连接规划的关键要素和未来研究方向。

【分布式 OLAP 查询引擎】Join 重排与物理算子选择

土法炼钢兴趣小组的博客
土法炼钢兴趣小组的博客 · 2026-07-07T00:00:00Z

本文讨论了OLAP查询中Hash Join和Hash Aggregation的执行机制,重点介绍了Trino的内存管理、溢出机制及其对查询性能的影响。Hash Join分为Build和Probe阶段,采用小表广播或分区策略;Hash Aggregation通过Partial和Final阶段进行数据聚合。文章还探讨了内存溢出时的处理策略,并与DuckDB进行了对比实验,强调内存管理在查询优化中的重要性。

【分布式 OLAP 查询引擎】Hash Join 与 Hash Aggregation:Build/Probe 与 Spill

土法炼钢兴趣小组的博客
土法炼钢兴趣小组的博客 · 2026-07-07T00:00:00Z

TeaQL-RS 是一个工具,旨在提升 Rust 开发者在复杂业务逻辑编写中的体验。它通过领域模型自动生成强类型的 Rust API,简化数据库操作,减少手动编写的胶水代码。开发者只需声明模型,即可快速生成代码,享受流式查询和安全链式访问,从而提升开发效率。TeaQL-RS 使 CRUD 操作变得优雅,帮助开发者专注于业务逻辑。

给 Rust 开发者的一个实验:彻底告别手写 JOIN 和 Optional 地狱

Rust.cc
Rust.cc · 2026-05-29T23:41:24Z

Following the strong participation in the first two editions of our Public MySQL Community Discussion webinar series, we’re excited to invite you to Edition #3. These sessions are part of our...

Join the Public MySQL Community Discussion Webinar (Edition #3)

Planet MySQL
Planet MySQL · 2026-04-13T09:28:36Z

数据集的结构影响编码风格。时间序列表促使使用窗口函数,而星型模式则倾向于使用JOIN和GROUP BY。本文通过SQL和pandas示例分析了常见的代码结构特征,如CTE和窗口函数的使用频率,强调理解数据结构的重要性,以提高解决问题的效率和一致性。

可视化解决方案中的模式:数据结构如何影响编码风格

KDnuggets
KDnuggets · 2026-03-18T14:00:33Z

Following the strong participation in our first Public MySQL Community Roadmap Discussion (with attendees joining from around the world), we are excited to invite you to the second edition of this...

Join the Public MySQL Community Roadmap Discussion Webinar (Edition #2)

Planet MySQL
Planet MySQL · 2026-03-12T17:16:01Z

As we shared in the MySQL Belgium Days in January, and summarized in the latest blog post , we are excited to invite you to an upcoming MySQL community webinar. This is an opportunity to connect...

Join the MySQL Community Roadmap Webinar

Planet MySQL
Planet MySQL · 2026-02-23T16:21:12Z

Thanks to the work of the Security Developer-in-Residence Seth Larson, the Python Security Response Team (PSRT) now has an approved public governance document (PEP 811). Following the new...

Join the Python Security Response Team!

Python Insider
Python Insider · 2026-02-17T07:30:00Z

在数据过滤中,LEFT ANTI JOIN通常比NOT IN更高效,能够更快返回相同结果,避免广播错误,优化查询性能,尤其在处理大数据集时。

NOT IN与LEFT ANTI JOIN:性能比较

桑弧蓬矢射四方
桑弧蓬矢射四方 · 2025-12-27T22:54:00Z

Postgres 19引入了优化的连接估算方法,解决了传统O(N^2)复杂度的问题。通过构建哈希表,复杂数据的估算性能显著提升,复杂度降至O(N),使查询规划速度更快,适应现代数据需求。

罗宾斯·塔拉坎:JOIN规划速度提升至16倍!

Planet PostgreSQL
Planet PostgreSQL · 2025-12-02T19:30:00Z

文章介绍了如何在 Golang 中使用 Gorm 查询员工薪资信息,采用 Preload 预加载员工数据和 Left Join 进行过滤,以确保薪资列表包含员工详细信息。代码示例展示了查询和统计的处理,避免重复记录计数问题。

Golang Gorm 同时使用 Preload 和 Left Join 进行联表查询并过滤数据

大象笔记 - Notes of Elephant Leg
大象笔记 - Notes of Elephant Leg · 2025-11-25T03:24:44Z

Discover how to combine information from multiple tables using JOINs in MySQL! This beginner-friendly guide explains INNER JOINs (and friends) with fun library metaphors, approachable SQL...

MySQL Basics: Join the Party—Bringing Tables Together with JOINs

Planet MySQL
Planet MySQL · 2025-10-21T04:00:00Z

在MySQL的连表查询中,驱动表和被驱动表的选择会影响查询性能。驱动表通常数据量小且能有效利用索引,优化器会根据数据量、索引和过滤条件来决定驱动表。使用EXPLAIN可以帮助分析和优化查询。

什么是MySQL JOIN查询的驱动表和被驱动表?

程序新视界
程序新视界 · 2025-10-19T05:57:41Z

Elastic and Jina AI join forces to advance open source retrieval for AI applications

Elastic Blog - Elasticsearch, Kibana, and ELK Stack
Elastic Blog - Elasticsearch, Kibana, and ELK Stack · 2025-10-09T00:00:00Z

Firefox is celebrating 21 years of Firefox by hosting four global events celebrating the power of browser choice this fall.  We are inviting people to join us in Berlin, Chicago, Los Angeles and...

Celebrate the power of browser choice with Firefox. Join us live.

The Mozilla Blog
The Mozilla Blog · 2025-10-01T17:02:44Z
  • <<
  • <
  • 1 (current)
  • 2
  • 3
  • >
  • >>
👤 个人中心
在公众号发送验证码完成验证
登录验证
在本设备完成一次验证即可继续使用

完成下面两步后,将自动完成登录并继续当前操作。

1 关注公众号
小红花技术领袖公众号二维码
小红花技术领袖
如果当前 App 无法识别二维码,请在微信搜索并关注该公众号
2 发送验证码
在公众号对话中发送下面 4 位验证码
友情链接: MOGE.AI 九胧科技 模力方舟 Gitee AI 菜鸟教程 Remio.AI DeekSeek连连 53AI 神龙海外代理IP IPIPGO全球代理IP 东波哥的博客 匡优考试在线考试系统 开源服务指南 蓝莺IM Solo 独立开发者社区 AI酷站导航 极客Fun 我爱水煮鱼 周报生成器 He3.app 简单简历 白鲸出海 T沙龙 职友集 TechParty 蟒周刊 Best AI Music Generator

小红花技术领袖俱乐部
小红花·文摘:汇聚分发优质内容
小红花技术领袖俱乐部
Copyright © 2021-
粤ICP备2022094092号-1
公众号 小红花技术领袖俱乐部公众号二维码
视频号 小红花技术领袖俱乐部视频号二维码