We are using freeswitch to make outbound calls. For performance and better quality we have installed its mod_http_cache
. And its caching the file and working fine. But the problem is sometime we need to change some audio files and so we also need to update its specific entry in freeswitch cache. So that freeswitch won't play older version of that file from cache.
The mod_http_cache
is having method called http_clear_cache
which empty the whole cache. But I don't want to clear the whole cache. I want to remove specific entry from it.
One way is to find the specific file entry in cache
folder and remove it manually, but that's not ideal when we need to update cache for more than one file.
Can someone suggest some better way for this?
Thanks.