-
Notifications
You must be signed in to change notification settings - Fork 6k
Description
//Version
2.8.0
//Source code
Not provided - general question
//Description
I use SimpleCache to download HLS donwload streams as desribed in
https://medium.com/google-exoplayer/downloading-streams-6d259eec7f95
And removal of these downloaded cache takes really long time. (Several hours for 1GB of data)
I suppose this is because of SimpleCache saving every chunk to a separate file and so it then takes a lot of time to remove all one by one.
My question is - can I somehow make SimpleCache save the whole thing into one big file?
I have tried creating my own version of CacheDataSink and sending everything to one file, but it seems to break the content index and download throws exception.
Is there some way to do it with SimpleCache or does saving to single file require a new Cache implementation?