admin-utilities-cache.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <template lang='pug'>
  2. v-card
  3. v-toolbar(flat, color='primary', dark, dense)
  4. .subheading {{ $t('admin:utilities.cacheTitle') }}
  5. v-card-text
  6. v-subheader.pl-0 Flush Pages Cache
  7. .body-1 Pages are cached to disk for better performance. You can flush the cache to force all content to be fetched from the DB again.
  8. v-btn(outline, color='primary').ml-0.mt-3
  9. v-icon(left) build
  10. span Proceed
  11. v-divider.my-3
  12. v-subheader.pl-0 Flush Assets Cache
  13. .body-1 Assets such as images and other files are cached to disk for better performance. You can flush the cache to force all assets to be fetched from the DB again.
  14. v-btn(outline, color='primary').ml-0.mt-3
  15. v-icon(left) build
  16. span Proceed
  17. v-divider.my-3
  18. v-subheader.pl-0 Flush Temporary Uploads
  19. .body-1 New uploads are temporarily saved to disk while they are being processed. They are automatically deleted after processing, but you can force an immediate cleanup using this tool.
  20. v-btn(outline, color='primary').ml-0.mt-3
  21. v-icon(left) build
  22. span Proceed
  23. </template>
  24. <script>
  25. export default {
  26. }
  27. </script>
  28. <style lang='scss'>
  29. </style>