Immutable Dictionary Vs Dictionary Vs C5 Vs F# - performance

前端 未结 5 613
北荒
北荒 2020-12-30 01:19

Our application uses plenty of dictionaries which have multi level lookup that are not frequently changing. We are investigating at converting some of the critical code that

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-30 02:06

    The F# map structure is implemented as a binary tree and, as such, is not actually a dictionary. As noted here, a standard .net dictionary is the fastest you're going to get.

提交回复
热议问题