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
パフォーマンス改善 #1638 の対応としてHTTPキャッシュの仕組みを用意する。 http://silex.sensiolabs.org/doc/1.3/providers/http_cache.html
デフォルトでは無効としておき、設定を変更することでHTTPキャッシュを使用できるようにする。 但しindex_dev.phpを使用時はキャッシュされない。
max-age
ETag
public
private
The text was updated successfully, but these errors were encountered:
フロントでHTTPキャッシュを適用する画面はrouteで指定し、 HTTPキャッシュの設定を有効にするとキャッシュが行われる。 デフォルトで以下の画面をキャッシュ対象として設定する。
上記以外の画面で適用したい場合、 php app/console router:debug でrouteが確認可能。ただし、tokenが含まれる画面はキャッシュ対象外とすること。 また、キャッシュ対象外にしたい場合、route定義を削除すること。
php app/console router:debug
Sorry, something went wrong.
3.0.11で対応済み。
No branches or pull requests
パフォーマンス改善 #1638 の対応としてHTTPキャッシュの仕組みを用意する。
http://silex.sensiolabs.org/doc/1.3/providers/http_cache.html
デフォルトでは無効としておき、設定を変更することでHTTPキャッシュを使用できるようにする。
但しindex_dev.phpを使用時はキャッシュされない。
max-age
とETag
を設定してキャッシュを行う。max-ageの秒数とHTTPキャッシュ適用画面は設定ファイルで変更可能とし、
Cache-Controlヘッダに
public
も追加する。フロント画面でHTTPキャッシュを行う画面は、他者と共有されても良い画面及び、
tokenが使用されていない画面をキャッシュ対象とする。
ETag
のみ設定してキャッシュを行う。管理画面ではCache-Controlヘッダに
private
も追加し、全ての画面をキャッシュ適用対象とする。The text was updated successfully, but these errors were encountered: