We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1e47c2 commit d9c5d74Copy full SHA for d9c5d74
README.md
@@ -93,7 +93,7 @@ RazorEngineCore is not responsible for caching. Each team and project has their
93
If you dont have one, use following static ConcurrentDictionary example as a simplest thread safe solution.
94
95
```cs
96
-private static ConcurrentDictionary<string, IRazorEngineCompiledTemplate> TemplateCache = new ConcurrentDictionary<string, IRazorEngineCompiledTemplate>();
+private static ConcurrentDictionary<int, IRazorEngineCompiledTemplate> TemplateCache = new ConcurrentDictionary<int, IRazorEngineCompiledTemplate>();
97
```
98
99
0 commit comments