News

How Latest Visual Studio 2022 Update Speeds Code Search

The recently released Visual Studio 2022 17.1 Preview 3 improves code search even more than gains made in the jump from VS 2019 to VS 2022.

As we reported in September 2021 coverage of VS 2022 17.0 Preview 4, Find in Files was already 3x faster when searching large solutions.

According to a new Jan. 26 post on Microsoft's developer blogs site, the dev team is continuing to boost the search performance.
Code Searching Improvements from VS 2019 to VS 2022
[Click on image for larger view.] Code Searching Improvements from VS 2019 to VS 2022 (source: Microsoft).

"Visual Studio 2022 Find in Files is already more than 2x faster for 95 percent of searches compared to Visual Studio 2019," said product manager Denizhan Yigitbas. "We wanted to make code search even better. I am excited to announce that Visual Studio 2022 17.1 Preview 3 introduces indexed Find in Files to make your search experience even faster!"

The functionality is enabled by going to Tools > Options > Environment > Preview Features and verifying that "Enable indexing for faster find experience" is checked.

Side-by-Side Animated GIF of VS 17.0 (left) and VS 17.1 Preview (right) Searching About 50,000 Files in 1,560 Projects
[Click on image for larger view.] Side-by-Side Animated GIF of VS 17.0 (left) and VS 17.1 Preview (right) Searching About 50,000 Files in 1,560 Projects (source: Microsoft).

Here's the explanation for how the indexing boost works:

At solution load or folder open, Visual Studio launches a satellite process "ServiceHub.IndexingService.exe" and transmits a list of files to it to index. The indexer then scrapes through the files and constructs an index of all of the n-grams contained in each file.

When the user performs a "Find," this index is used to prune files from the search so that it completes more quickly.

The indexing process avoids impacting solution load, build and user activities by running at Below Normal operating system priority outside of the main Visual Studio process.

The preview can be downloaded here.

About the Author

David Ramel is an editor and writer at Converge 360.

comments powered by Disqus

Featured

  • Compare New GitHub Copilot Free Plan for Visual Studio/VS Code to Paid Plans

    The free plan restricts the number of completions, chat requests and access to AI models, being suitable for occasional users and small projects.

  • Diving Deep into .NET MAUI

    Ever since someone figured out that fiddling bits results in source code, developers have sought one codebase for all types of apps on all platforms, with Microsoft's latest attempt to further that effort being .NET MAUI.

  • Copilot AI Boosts Abound in New VS Code v1.96

    Microsoft improved on its new "Copilot Edit" functionality in the latest release of Visual Studio Code, v1.96, its open-source based code editor that has become the most popular in the world according to many surveys.

  • AdaBoost Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the AdaBoost.R2 algorithm for regression problems (where the goal is to predict a single numeric value). The implementation follows the original source research paper closely, so you can use it as a guide for customization for specific scenarios.

  • Versioning and Documenting ASP.NET Core Services

    Building an API with ASP.NET Core is only half the job. If your API is going to live more than one release cycle, you're going to need to version it. If you have other people building clients for it, you're going to need to document it.

Subscribe on YouTube