Sven
Sven
I was also looking for something like this. It would be wonderful if I could easily run BDN with a comparison CLI argument as part of a PR cycle, and...
@umputun Why the strong feelings against support for captcha services? It would make someone like me supporting anonymous authentication feel a bit better about the authenticity of comments.
Was there any talk about potential refactoring for the command line parsing? It's all hand made at the moment and I must admit I struggled more with figuring out how...
Two things I've noticed -- In your examples you're showing commands like `--command:arg`. I think it's more _usual_ to see `--command arg`, ex `dotnet build -v DEBUG --runtime win-x64`. This...
I'm assuming we'd have to migrate off of the Microsoft.Caching.Extensions namespace (https://source.dot.net/#Microsoft.Extensions.Caching.Abstractions/MemoryCacheExtensions.cs,105) and recreate this as ValueTask?
@alastairtree Is there anything preventing this from going forward?
@alastairtree Would it be possible for you to publish an update or some high level overview of what your plans are for this project? It'd be cool to see what...
I've forgotten, it seems, that **CachingService** can take in any provider as a ctor. Something like that should be retained to let the user spin up their own provider as...
@alastairtree What we currently have leans towards implementation 3, where we will do something like `services.AddService(services => new CachingService(new FastCacheProvider(..)));`, since not _everything_ can be IAppCache. This will work, but...
Hehe, not me necessarily. I'm just thinking about the future possibilities of having several different kinds of cache in an app. Crazy things like resource files (images) or so, where...