I’ ve already downloaded Wowza Media Server 4.0.4 and Eclipse Plugin. By using these, i wrote some codes for changing logic of media caching. But i could not make it right.
You can use the normal RAM in main memory as if it were a partition on a hard drive, and then use that partition as the Media Store location for caching your media files.
Take a look at this web article explaining how you can do that:
This is effectively how MediaCache works by changing the MinTimeToLive value. This value is the minimum time an asset can stay in the store when not in use.
Scenario
Store is 10Gb
The following files are cached 5 minutes apart with a MinTimeToLive set to 300000 ( 5 minutes )
File 1 is requested and partially cached - 2Gb - After 5 minutes the user stops watching the file
File 2 is requested and partially cached - 2Gb
File 3 is requested and partially cached - 3Gb
File 4 is requested and partially cached - 2Gb
File 5 is requested - 2 Gb - However only 1 Gb of space remains. MediaCache knows the MinTimeToLive has expired on File1, so removes it to make space for File 5. When a file is requested MediaCache reserves the whole file size, rather than just the amount being used at the time so it knows it has space to populate the rest of the cache with the file when needed.
This is a very simplistic example but hopefully clarifies it for you.
If a new video is asked to add to cache; if cache is available ( has free part) it is added without logic.
But if cache has no free part, it must change the videos. And this logic looks for LTD , it chooses minimum LTD and removes the minimum LTD video. Than it adds newly requested video to this free part.
My codes basicly like this, but i dont/cant apply to wowza server. And i couldnt find any source about coding media caching.