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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
H
Help Net Security
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
C
Check Point Blog
F
Fortinet All Blogs
腾讯CDC
博客园 - Franky
WordPress大学
WordPress大学
U
Unit 42

Latest from Windows Central

"An unmatched upgrade opportunity": Intel's new Core Series 3 mobile CPUs target "value buyers"… "There are over 5,700 combinations.": I attended Panasonic's USS Intrepid press conference and saw 10Gbps, Wi‑Fi 7 and on‑device AI in the new Toughbook 56, but should you swap out your Toughbook 55? "We "So Mac folks feel comfortable": Microsoft Microsoft thinks you'll want an Xbox Controller and 1 year of Microsoft 365 and Xbox Game Pass over a MacBook Neo "Microsoft fired the skilled people, leaving flowchart followers": Microsoft's Security Response Center is being blamed for the zero-day BlueHammer exploit leak, but I can't tell who's right "Thank you to every Greymane": Crimson Desert shows no signs of slowing down, topping over 5 million sales… "Another all-round excellent mini PC:" Beelink's discounted desktop is fantastic for intensive work and… Xbox's Starfield gets Nintendo Switch 2 rating days after its PS5 release, keeping hopes for a port of Bethesda's RPG alive — here's what we know "The stuff that we're seeing is really well put together": Xbox game publishing chief says Forza Horizon 6 takes him back to the golden years of racing games Microsoft's Xbox games lead Matt Booty says its studios are in a "culture of cultures" and work together more than you think — Blizzard is even helping with Fable Rumored feature coming to Steam that will help you track prices, and Microsoft should copy it immediately for Xbox and… Xbox and Best Buy want to help you build your first video game in 2026 Microsoft prepares display upgrades and two stage launch for new Surface Pro and Surface Laptop with Intel and… Someone discovered Seagate's Xbox Storage Expansion cards can be used on PC — which has made their value more… ID@Xbox makes a bold claim — “Games launching day one into Game Pass… do very well on other platforms… Before Forza Horizon 6 takes us to Japan, let's remember where the legend began almost 14 years ago "Users can now simply ask what happened": AppControl's optional AI integration gives you in-depth PC diagnostic history in plain English — It works with popular LLMs, but I'll use offline models for added security Our friends at Tom's Guide are upgrading: Here's what it means, and how our sister site's overhaul… "Quantity over quality is not always the answer": WWE 2K26 comes close to being the best in the world, but yearly releases are holding it back I "This is one headset that absolutely will not disappoint anyone": Our favorite Xbox headset raises the bar for sound quality with a price that's lower than I expected "One of the better laptops I’ve encountered and one I’d happily use daily": This high-end ThinkPad is a solid bet for professionals — especially after this generous discount I've finally found a loophole to block a specific type of YouTube ads, and it won’t cost you a dime: Just a… www.windowscentral.com "The Lotus guys probably figured it didn't matter to be wrong": Excel thinks 1900 was a leap year because of a small shortcut taken in the '80s — I'll think of this next time I want to cut corners Starfield's sales on PlayStation 5 make me wonder why Xbox even bothered... was this worth devaluing exclusivity? Overwatch Season 2 is LIVE! Xbox Your Xbox Storage Expansion Cards can have a life after the console if you get a simple adapter for your PC
Microsoft fixed the issues that made Teams feel slow, but...
Sean Endicott · 2026-06-11 · via Latest from Windows Central
The Microsoft Teams app on a laptop arranged in New York, US, on Tuesday, June 25, 2024. Microsoft Corp. risks a hefty European Union fine after regulators accused the company of abusing its market power by bundling the Teams video-conferencing app to its other business software. Photographer: Gabby Jones/Bloomberg via Getty Images
(Image credit: Getty Images | Bloomberg)

Frozen apps and laggy messages can make any job more stressful. Recent updates to Microsoft Teams should lessen those issues, making chats faster, apps more reliable, and searching for people more streamlined.

A blog post by Ihor Lukyanenko breaks down how performance and reliability were improved in Teams.

Speeding up chats

Chat latency in Teams has been reduced by 20% since the start of this year. The biggest gains will be seen when "cold switching" between chats.

When you switch to a chat you've opened recently, data is in your system's memory and performance is better: that's called a warm switch. A cold switch is when you open a chat that has not been loaded recently. Microsoft focused heavily on cold switches this year.

Swipe to scroll horizontally

How Microsoft sped up Teams chats

Root Cause

Fix

Data queries were fired too late – The query to fetch conversation data was triggered during the React render cycle, but the main thread was busy with component unmounting and effect cleanup, delaying the processing of data responses.

Query first – Instead of waiting for the React render cycle to request data, we now fire the data query immediately in the click handler—before rendering begins. This gives our data layer a head start, while main thread renders parts that don’t depend on query data.  

Waterfall data responses – Multiple sequential queries were sent to the data layer, each triggering its own round-trip and render cycle. This created a cascade of small delays that added up significantly at the tail.

Broad query – We consolidated all the data needed for a chat switch into a single query, eliminating the waterfall of sequential requests. One switch now results in exactly one data round-trip.

Uncontrolled response priority – Non-critical data responses could be processed before critical ones, further blocking the main thread and delaying the content the user was waiting to see.

Faster paint – We suspend when rendering reaches a point where data is needed. We then resume rendering after the response comes back. After performing a single pass render, we yield to browser to paint the frame. 

Cold-switch latency was greatly reduced due to the changes Microsoft made. You should see a difference regardless of your hardware, but people with slower networks or older devices will see the biggest change.

Reducing app hangs

Microsoft Teams

Microsoft Teams for iOS is now more stable and has improved search functionality. (Image credit: Future)

An app "hanging" refers to when it stops responding. A common way hanging affects usage is that touching the app fails to register, often forcing a restart.

Microsoft fixed the most common causes of app hangs for Teams on macOS and iOS this year. Daily users of the apps have seen a 35% decrease in hangs since the changes shipped.

Here's what the developers of Teams did on macOS, according to Lukyanenko:

  • Network status monitoring – The native network status tracker was making a blocking call on the main thread to check connectivity changes. We moved this to a background thread, eliminating the single largest source of macOS freezes. 
  • WebView2 library loading – Loading the WebView2 dynamic library on the main thread caused 6% of all freezes. Working with the WebView2 team, we enabled a new feature that preloads the library on a background thread, significantly reducing the blocking time during the call to create the WebView2 environment. 
  • Error reporting – A URL request made during web app error reporting was blocking the main thread. We switched to an asynchronous call, resolving 1.7% of freezes with a straightforward fix. 

Improvements to Teams on iOS came from a more widespread effort that included redesigning how database operations run, caching, and offloading certain calculations.

Finding people within Teams is faster as well, 25% faster, to be exact.

Search within Teams refers to more than just the app's search box. These fixes also speed up how quickly names appear when you mention someone with the @ symbol.

To improve search performance, Microsoft "optimized the query pipeline, reduced database queue congestion, and enhanced overall system throughput."

Have you noticed a difference?

Unlike many changes to Teams which we cover just as they roll out or while they're still in testing, these improvements have already shipped and have been out for months. Have you noticed a difference in app performance and reliability this year? Is Teams where it needs to be for daily use?

Lukyanenko highlights that "performance is never finished," but I'm curious if it's good enough for you to use Teams without frustration.


Click to join us on r/WindowsCentral

Join us on Reddit at r/WindowsCentral to share your insights and discuss our latest news, reviews, and more.


Sean Endicott is a news writer and apps editor for Windows Central with 11+ years of experience. A Nottingham Trent journalism graduate, Sean has covered the industry’s arc from the Lumia era to the launch of Windows 11 and generative AI. Having started at Thrifter, he uses his expertise in price tracking to help readers find genuine hardware value.

Beyond tech news, Sean is a UK sports media pioneer. In 2017, he became one of the first to stream via smartphone and is an expert in AP Capture systems. A tech-forward coach, he was named 2024 BAFA Youth Coach of the Year. He is focused on using technology—from AI to Clipchamp—to gain a practical edge.