fl3pp

Results 4 comments of fl3pp

Suggestion: use the keys `_wmf` and `_wmb` to provide the commands. Users are then able to remap the keys as they wish.

This issue would likely be resolved if the [`ArchitectureCache`](https://github.com/TNG/ArchUnitNET/blob/main/ArchUnitNET/Domain/ArchitectureCache.cs) made use of a [`MemoryCache`](https://learn.microsoft.com/en-us/dotnet/api/system.runtime.caching.memorycache?view=net-9.0-pp) instead of `ConcurrentDictionary`. `MemoryCache` is also thread-safe but automatically clears cached data once the available memory...

@alexanderlinne thanks for the quick response. I've tried to implement the fix using the memory cache but quickly noticed that .NET doesn't deliver the MemoryCache built-in anymore, but through a...