# HG changeset patch # User Felix Wolfsteller # Date 1325854501 0 # Node ID 17e7a0d063bd3e4f44c4f66a4643dad2ce7483d7 # Parent 0da8874bd378056780fb7baaa4b9dfe0eda183fc Add cache config for static wqkms data. flys-artifacts/trunk@3615 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r 0da8874bd378 -r 17e7a0d063bd flys-artifacts/ChangeLog --- a/flys-artifacts/ChangeLog Fri Jan 06 12:02:10 2012 +0000 +++ b/flys-artifacts/ChangeLog Fri Jan 06 12:55:01 2012 +0000 @@ -1,3 +1,12 @@ +2011-01-06 Felix Wolfsteller + + Add cache for 'static' wqkms (e.g. BaseData) to default cache conf. + + * doc/conf/cache.xml: Add Cache Config for static wqkms. + + * src/main/java/de/intevation/flys/artifacts/model/StaticWQKmsCacheKey.java: + Adjust typo in cache name, minor cosmetic. + 2011-01-06 Raimund Renkert * src/main/java/de/intevation/flys/artifacts/MapArtifact.java: diff -r 0da8874bd378 -r 17e7a0d063bd flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/StaticWQKmsCacheKey.java --- a/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/StaticWQKmsCacheKey.java Fri Jan 06 12:02:10 2012 +0000 +++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/StaticWQKmsCacheKey.java Fri Jan 06 12:55:01 2012 +0000 @@ -8,7 +8,7 @@ public final class StaticWQKmsCacheKey implements Serializable { - public static final String CACHE_NAME = "wst-wq--value-table-static"; + public static final String CACHE_NAME = "wst-wq-value-table-static"; private int column; private int wst_id; @@ -27,7 +27,7 @@ return false; } StaticWQKmsCacheKey o = (StaticWQKmsCacheKey) other; - return wst_id == o.wst_id && this.column == o.column; + return this.wst_id == o.wst_id && this.column == o.column; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :