How to remove Contents from Cache???

hey there,


Does anybody know how too remove a particular item from the Mikrotik web-proxy cache?
I want to remove some large contents to free some sd space.



wBw,
Muhammad Nasir Javed

Might try /ip proxy cache-contents

Hi
You can try this:

/ip proxy set enable=no
:delay 10s
:foreach i in=[/ip proxy cache-contents] do={
/ip proxy cache-contents remove $i;
}
:delay 15m
/ip proxy set enable=yes

Bigfoot