We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if hashed_urls are on, then a -000 suffix is added to the _memory database, and the cache settings are set just as if it was a normal hashed database.
_memory
in particular, this header is set:
cache-control: max-age=31536000
this is not appropriate because the _memory-000 database isn't really hashed based on the contents of the databases (see #1561).
_memory-000
Either the cache-control header should be changed, or the _memory db should have a hash suffix that does depend on the contents of the databases.
The text was updated successfully, but these errors were encountered:
this has been addressed by the datasette-hashed-urls plugin
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
if hashed_urls are on, then a -000 suffix is added to the
_memory
database, and the cache settings are set just as if it was a normal hashed database.in particular, this header is set:
cache-control: max-age=31536000
this is not appropriate because the
_memory-000
database isn't really hashed based on the contents of the databases (see #1561).Either the cache-control header should be changed, or the _memory db should have a hash suffix that does depend on the contents of the databases.
The text was updated successfully, but these errors were encountered: