我需要验证HTML页面是否已被缓存。下面粘贴的代码正在编译,但是我不知道如何检查此页面是否已被缓存。 您能否提供一些提示,以确保一切正常?
import redis
import requests
from cachecontrol import CacheControl
from cachecontrol.caches.redis_cache import RedisCache
from cachecontrol.caches import FileCache
sess = requests.session()
cached_sess = CacheControl(sess)
response = cached_sess.get('https://www.bbc.com/news')
print("DONE")