Borrar contenido Invalido de Thunder Cache

bitfrost's picture

Estimados,

Si alguno les pasa que hay ciertos videos en thundercache, que no se cachea bien, se puede usar el siguiente comando para librarnos de este problema

find . -size -1060k -exec rm {} \;

Obviamente esto tenemos que hacerlo en la carpeta de youtube de Thundercache.

Saludos

Bitfrôst.

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
bitfrost's picture

Borrar Correctamente el Contenido

El Script de Arriba no funciona correctamente, este si:

/thunder/youtube/domain.db

sqlite3 /thunder/youtube/domain.db "select file from thunder where last_request < \"$data\" and requested = 0 limit 100;"`

sqlite3 /thunder/youtube/domain.db "select file from thunder where size < 3150282 ;"

lista=`sqlite3 /thunder/youtube/domain.db "select file from thunder where size < 3150282 ;"`
for i in $lista
do
sqlite3 /thunder/youtube/domain.db "delete from thunder where file=\"$i\""
if rm "/thunder/youtube/$i" > /dev/null
then
echo "Eliminado $i..."
fi
done