I am reading django's cache framework and came across this code (not in the docs):
feed = cache.get('sfc:index:%s' % request.LANGUAGE_CODE)
I couldnot find this style of getting/settings caches by googling. what is the purpose of :
inside cache key? what does this code exactly do with those three keys e.g. sfc:index:en
?
sorry for the thumb question.