James Kominick
James Kominick
Thanks for pointing this out. I'm able to reproduce also. It looks like this is due to either a bug or the intended operation of the underlying `sled::Db`. Also looks...
There is a potential ugly workaround until the storage backend is swapped. `DiskCacheBuilder` lets you set a specific disk directory `set_disk_directory` where each function's file cache will be stored. It...
You can access the backing cache store at any time, it's named after the function name by default (FN_WRAPPED_WITH_CACHE). What needs to be added is a method on the sized...
Hey @mokeyish , I'm open to it. There was a PR (#117 ) opened a while ago that was never fully finished. I'm not sure when I I'll get the...
Hi @kembofly the global cache produced by the procedural macro is in all caps with the name of the function, see https://github.com/jaemk/cached/blob/f1cfbc1b44ab88bb986000d74201865347f0d0c1/examples/kitchen_sink_proc_macro.rs#L190 The cache hit metrics will be available there....
Hi @kembofly sorry for the late reply - I'm curious what the test and results of using `ExpiringSizedCache` were. Were you sure to make use of its ability to read...
Sorry about that, released `cached_proc_macro` 0.23.0 and `cached` 0.53.1 to fix it
hey @brianheineman, thanks for adding this! Could you make this configurable? either adding a `skip_extensions: Option` argument or ideally to maintain backwards compatibility adding a separate method `asset_for_config(config: &AssetMatchConfig)` that...
Looks like the workflow definition needs to be updated. > Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/cache@v2. Please update your workflow to use...
yes, released in 0.56 - thanks @hcldan