Mercurial > dive4elements > framework
comparison artifact-database/src/main/resources/sql/org-h2-driver.properties @ 30:88972c6daa4f
Added a cleanup thread which periodically removes
outdated artifacts from database and calls there
endOfLife() method.
artifacts/trunk@70 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Thu, 10 Sep 2009 23:16:18 +0000 |
parents | 0d16d1bb2df0 |
children | c2d53bd30ab8 |
comparison
equal
deleted
inserted
replaced
29:22b03d5c84c5 | 30:88972c6daa4f |
---|---|
7 artifacts.update=UPDATE artifacts SET last_access = CURRENT_TIMESTAMP, \ | 7 artifacts.update=UPDATE artifacts SET last_access = CURRENT_TIMESTAMP, \ |
8 data = ? WHERE id = ? | 8 data = ? WHERE id = ? |
9 | 9 |
10 artifacts.touch=UPDATE last_access = CURRENT_TIMESTAMP WHERE id = ? | 10 artifacts.touch=UPDATE last_access = CURRENT_TIMESTAMP WHERE id = ? |
11 | 11 |
12 artifacts.outdated=SELECT id FROM artifacts WHERE ttl IS NOT NULL \ | 12 artifacts.outdated=SELECT id, data FROM artifacts WHERE ttl IS NOT NULL \ |
13 AND CURRENT_TIMESTAMP - last_access > ttl | 13 AND CURRENT_TIMESTAMP - last_access > ttl LIMIT 50 |
14 | |
15 artifacts.select.id=SELECT gid, last_access, ttl, data FROM artifacts WHERE id = ? | |
16 | 14 |
17 artifacts.select.gid=SELECT id, last_access, ttl, data FROM artifacts WHERE gid = ? | 15 artifacts.select.gid=SELECT id, last_access, ttl, data FROM artifacts WHERE gid = ? |
18 | 16 |
19 artifacts.delete=DELETE FROM artifacts WHERE id = ? | 17 artifacts.delete=DELETE FROM artifacts WHERE id = ? |