我在 apache 中运行一个 django 项目。我正在将表单字段值插入到表中。
from blog.models import Blog
b = Blog(name='Beatles Blog', tagline='All the latest Beatles news.')
但是当通过 django orm 获取插入的值时,我得到了错误。
entry = Blog.objects.get(name='Beatles Blog')
当重新启动 apache 获取插入的值。
这是 apache 缓存问题还是 django 缓存问题?如何在不重新启动 apache 的情况下获取最近插入的值?提前致谢。