remove response caching

Turn out, that caching on the client side does not play well when new
data is loaded into the system.
This commit is contained in:
2018-05-10 17:52:13 +02:00
parent b61a34a0e6
commit 47e32bb6b1
5 changed files with 6 additions and 32 deletions

View File

@@ -12,16 +12,6 @@ public interface PropertyKeys {
*/
String TMP_DIR = "path.tmp";
/**
* The number of seconds generated images shall be cached.
*/
String CACHE_IMAGES_DURATION_SECONDS = "cache.images.duration.seconds";
/**
* Default value for {@link PropertyKeys#CACHE_IMAGES_DURATION_SECONDS}
*/
String CACHE_IMAGES_DURATION_SECONDS_DEFAULT = "3600";
/**
* Indicates whether or not this instance is running in production. This
* property is used to switch Vue.js into production or development mode.