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

推荐订阅源

Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
美团技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
T
Tailwind CSS Blog
D
Docker
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
腾讯CDC
Vercel News
Vercel News
Engineering at Meta
Engineering at Meta
U
Unit 42
The Cloudflare Blog
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
爱范儿
爱范儿
Recent Announcements
Recent Announcements
博客园 - 聂微东
博客园 - 叶小钗
H
Help Net Security
MyScale Blog
MyScale Blog

Discourse Meta - Latest posts

Horizon: High Context Topic Cards I'd like to ask what this file /var/www/discourse/vendor/data/RT_sRGB.icm is used for? Discourse to Markdown Plugin How to verify a subdomain (mysite.discourse.group) in Google Search Console? Reader Mode Publishing WordPress gallery posts on Discourse Discourse User Feedback New user filter by custom field and contact Interact with discourse from Python? Why we can't type the assignee in the search of a post to assign - home screen app Redis Flushall Category-toggled one-touch move post Some sort of variable to eliminate duplicate text? Why did this plugin replacement fail? Add user to list modal often appears above the mobile viewport sceen Creating/Editing a post on mobile: let's discuss the 2026 Discourse experience Wp-discourse feature request - do not show comments with specific tag? Are there any good Chinese plugins? Discourse ID and 2FA Discourse MCP is here! Sample Forum to See Admin Features? I am unable to register for a free Discourse site Wikipedia Lookup Add text for /login (like js.create_account.disclaimer for /signup) How can i set disable Markdown & Default to Rich Text What's the background image size for the Welcome Banner? How do I enable Associated Accounts with 2FA? Hamburger toggle Support <span data-attribute> in the rich editor Cannot disable read-only mode on Free Plan
Migrate from gz compression to zstd for backups
@mentalstrin · 2026-04-23 · via Discourse Meta - Latest posts
Occasionally the backup process causes us some availability issues due to the additional load. So I did a quick experiment with zstd today. These were my results of compressing the same 73GiB dump.sql file with gzip (level 4, as in the Discourse backup) and zstd (default level 3, of 19): Compression size: 15.8% smaller (.zst was 84% of .gz size) Compression time (-T1): 71% faster (29% of gzip time) Compression time (-T0): 89% faster (11% of gzip time) YMMV, didn’t run multiple times, my own machine (6 cores), it was doing other things too, etc, etc — didn’t aim for precision. Still, I think the benefits are clear. I’m not sure if -T0 would necessarily be a good choice for everyone as leaving some room for Discourse itself seems like a good idea, hence the sample with -T1 for a more apples to apples comparison. Feels like a win-win and would likely also have a significant impact on Discourse’s hosting infra too. That said, I don’t have the chops for a PR, so just sharing what I found.