summaryrefslogtreecommitdiff
path: root/caching-tests/test.ur
diff options
context:
space:
mode:
Diffstat (limited to 'caching-tests/test.ur')
-rw-r--r--caching-tests/test.ur28
1 files changed, 28 insertions, 0 deletions
diff --git a/caching-tests/test.ur b/caching-tests/test.ur
new file mode 100644
index 00000000..8035e336
--- /dev/null
+++ b/caching-tests/test.ur
@@ -0,0 +1,28 @@
+table tab : {Id : int, Val : int} PRIMARY KEY Id
+
+fun cache id =
+ res <- oneOrNoRows (SELECT tab.Val
+ FROM tab
+ WHERE tab.Id = {[id]});
+ return <xml><body>
+ Reading {[id]}.
+ {case res of
+ None => <xml>?</xml>
+ | Some row => <xml>{[row.Tab.Val]}</xml>}
+ </body></xml>
+
+fun flush id =
+ res <- oneOrNoRows (SELECT tab.Val
+ FROM tab
+ WHERE tab.Id = {[id]});
+ (case res of
+ None => dml (INSERT INTO tab (Id, Val)
+ VALUES ({[id]}, 0))
+ | Some row => dml (UPDATE tab
+ SET Val = {[row.Tab.Val + 1]}
+ WHERE Id = {[id]}));
+ return <xml><body>
+ {case res of
+ None => <xml>Initialized {[id]}!</xml>
+ | Some row => <xml>Incremented {[id]}!</xml>}
+ </body></xml>