Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Why is Visual Studio 2017 so slow ????

VS2017 takes excruciating long to to come up with intellisense suggestions, sometimes it even freezes when I'm just typing. This painful experience has largely been made with version 15.6.6.

Votes Newest

Answers 4


The solution provided here is originally from Harry Stonelicker. This issue is decribed here https://github.com/Microsoft/visualfsharp/issues/4574

possible solutions to VS2017 sluggish behavior are unchecking following features in Text Editor > F# > Code Fixes / Performance

  
  

Now my syntax highlighting is broken ...

Attila Szabo   5 years ago Report

According to https://blogs.msdn.microsoft.com/dotnet/2018/04/18/visual-studio-2017-15-7-preview-4/ the new 15.7 Preview 4 should be faster. I'll try it and see if that's true...

  
  
Posted 5 years ago

Visual Studio 2019 is faster - they also seemed to have fixed the intellisense memory leak.

  
  
Posted 4 years ago

Consider looking into alternative IDEs:

  • Jetbrains Rider for .net framework and non-media solutions (they don't yet support .net core for F#, there are also problems with the diffGenerator)
  • VS Code for .net core or standard solutions, tooling is provided by the ionide-fsharp extension
  
  
Posted 5 years ago
Edited 5 years ago
3K Views
4 Answers
5 years ago
3 years ago
Tags