How to clear cache?

I see that the page is cached. How to clear the cache on the server side?

Try this one:

Type on ralph host:


ralph shell

In python shell type:

>>> from django.core.cache import cache
>>> cache.clear()

Thanks, it worked with

ralphctl shell