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
cc05c6e1
Commit
cc05c6e1
authored
9 years ago
by
Christoph Thelen
Browse files
Options
Downloads
Patches
Plain Diff
Add "note to developers" regarding caching
parent
ae601fac
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/thm/arsnova/dao/CouchDBDao.java
+15
-0
15 additions, 0 deletions
src/main/java/de/thm/arsnova/dao/CouchDBDao.java
with
15 additions
and
0 deletions
src/main/java/de/thm/arsnova/dao/CouchDBDao.java
+
15
−
0
View file @
cc05c6e1
...
@@ -84,6 +84,21 @@ import de.thm.arsnova.services.ISessionService;
...
@@ -84,6 +84,21 @@ import de.thm.arsnova.services.ISessionService;
/**
/**
* Database implementation based on CouchDB.
* Database implementation based on CouchDB.
*
* Note to developers:
*
* This class makes use of Spring Framework's caching annotations. When you are about to add new functionality,
* you should also think about the possibility of caching. Ideally, your methods should be dependent on domain
* objects like Session or Question, which can be used as cache keys. Relying on plain String objects as a key, e.g.
* by passing only a Session's keyword, will make your cache annotations less readable. You will also need to think
* about cases where your cache needs to be updated and evicted.
*
* In order to use cached methods from within this object, you have to use the getDatabaseDao() method instead of
* using the "this" pointer. This is because caching is only available if the method is called through a Spring Proxy,
* which is not the case when using "this".
*
* @see <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/html/cache.html">Spring Framework's Cache Abstraction</a>
* @see <a href="https://github.com/thm-projects/arsnova-backend/wiki/Caching">Caching in ARSnova explained</a>
*/
*/
@Component
(
"databaseDao"
)
@Component
(
"databaseDao"
)
public
class
CouchDBDao
implements
IDatabaseDao
,
ApplicationEventPublisherAware
{
public
class
CouchDBDao
implements
IDatabaseDao
,
ApplicationEventPublisherAware
{
...
...
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