Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
Paul-Christian Volkmer
ARSnova Backend
Commits
140c71b4
Commit
140c71b4
authored
8 years ago
by
Daniel Gerhardt
Browse files
Options
Downloads
Patches
Plain Diff
Clear caches at fixed time intervals
parent
d31140b9
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/de/thm/arsnova/cache/CacheBuster.java
+1
-0
1 addition, 0 deletions
src/main/java/de/thm/arsnova/cache/CacheBuster.java
src/main/java/de/thm/arsnova/cache/ScheduledCacheBuster.java
+52
-0
52 additions, 0 deletions
src/main/java/de/thm/arsnova/cache/ScheduledCacheBuster.java
with
53 additions
and
0 deletions
src/main/java/de/thm/arsnova/cache/CacheBuster.java
+
1
−
0
View file @
140c71b4
...
...
@@ -19,6 +19,7 @@ package de.thm.arsnova.cache;
import
de.thm.arsnova.events.*
;
import
org.springframework.cache.annotation.CacheEvict
;
import
org.springframework.scheduling.annotation.Scheduled
;
import
org.springframework.stereotype.Component
;
/**
...
...
This diff is collapsed.
Click to expand it.
src/main/java/de/thm/arsnova/cache/ScheduledCacheBuster.java
0 → 100644
+
52
−
0
View file @
140c71b4
package
de.thm.arsnova.cache
;
import
org.springframework.cache.annotation.CacheEvict
;
import
org.springframework.scheduling.annotation.Scheduled
;
import
org.springframework.stereotype.Component
;
/** This component cleares caches at fixed time intervals:
* <ul>
* <li><code>sessions</code>: 6h</li>
* <li><code>skillquestions</code>, <code>lecturequestions</code>, <code>preparationquestions</code>,
* <code>flashcardquestions</code>: 30min</li>
* <li><code>questions</code>: 30min</li>
* <li><code>answers</code>: 15min</li>
* <li><code>learningprogress</code>: 15min</li>
* </ul>
*/
@Component
public
class
ScheduledCacheBuster
{
@CacheEvict
(
value
=
"sessions"
,
allEntries
=
true
)
@Scheduled
(
initialDelay
=
1000
*
25
,
fixedRate
=
1000
*
60
*
60
*
6
)
private
void
clearSessionCache
()
{
}
@CacheEvict
(
value
=
"questions"
,
allEntries
=
true
)
@Scheduled
(
initialDelay
=
1000
*
50
,
fixedRate
=
1000
*
60
*
30
)
private
void
clearQuestionCache
()
{
}
@CacheEvict
(
value
=
"skillquestions"
,
allEntries
=
true
)
@Scheduled
(
initialDelay
=
1000
*
75
,
fixedRate
=
1000
*
60
*
30
)
private
void
clearSkillQuestionCache
()
{
}
@CacheEvict
(
value
=
"lecturequestions"
,
allEntries
=
true
)
@Scheduled
(
initialDelay
=
1000
*
100
,
fixedRate
=
1000
*
60
*
30
)
private
void
clearLectureQuestionCache
()
{
}
@CacheEvict
(
value
=
"preparationquestions"
,
allEntries
=
true
)
@Scheduled
(
initialDelay
=
1000
*
125
,
fixedRate
=
1000
*
60
*
30
)
private
void
clearPreparationQuestionCache
()
{
}
@CacheEvict
(
value
=
"flashcardquestions"
,
allEntries
=
true
)
@Scheduled
(
initialDelay
=
1000
*
150
,
fixedRate
=
1000
*
60
*
30
)
private
void
clearFlashcardQuestionCache
()
{
}
@CacheEvict
(
value
=
"answers"
,
allEntries
=
true
)
@Scheduled
(
initialDelay
=
1000
*
175
,
fixedRate
=
1000
*
60
*
15
)
private
void
clearAnswerCache
()
{
}
@CacheEvict
(
value
=
"learningprogress"
,
allEntries
=
true
)
@Scheduled
(
initialDelay
=
1000
*
200
,
fixedRate
=
1000
*
60
*
15
)
private
void
clearLearningProgressCache
()
{
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment