Skip to content

Commit 05e2546

Browse files
committed
Single record question queries are not cacheable
1 parent 6818f87 commit 05e2546

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Model/src/main/java/org/gusdb/wdk/model/answer/single/SingleRecordQuestion.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ public Map<String, Param> getParamMap() {
4343
public WdkModel getWdkModel() {
4444
return wdkModel;
4545
}
46+
@Override
47+
public boolean isCacheable() {
48+
return false;
49+
}
4650
};
4751
}
4852

0 commit comments

Comments
 (0)