diff --git a/src/main/java/de/thm/arsnova/dao/CacheBustListener.java b/src/main/java/de/thm/arsnova/dao/CacheBustListener.java
new file mode 100644
index 0000000000000000000000000000000000000000..cde9852b38b5cdae9ac3e0fd4528aef0b5edd20d
--- /dev/null
+++ b/src/main/java/de/thm/arsnova/dao/CacheBustListener.java
@@ -0,0 +1,38 @@
+/*
+ * This file is part of ARSnova Backend.
+ * Copyright (C) 2012-2015 The ARSnova Team
+ *
+ * ARSnova Backend is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * ARSnova Backend is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package de.thm.arsnova.dao;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.ApplicationListener;
+import org.springframework.stereotype.Component;
+
+import de.thm.arsnova.events.NovaEvent;
+import de.thm.arsnova.events.NovaEventVisitor;
+
+@Component
+public class CacheBustListener implements ApplicationListener<NovaEvent> {
+
+	@Autowired
+	private ICacheBuster cacheBuster;
+
+	@Override
+	public void onApplicationEvent(NovaEvent event) {
+		event.accept((NovaEventVisitor) cacheBuster);
+	}
+
+}
diff --git a/src/main/java/de/thm/arsnova/dao/CacheBuster.java b/src/main/java/de/thm/arsnova/dao/CacheBuster.java
new file mode 100644
index 0000000000000000000000000000000000000000..fc00491e1160a00d9387105e8cb0d6e16229d0b4
--- /dev/null
+++ b/src/main/java/de/thm/arsnova/dao/CacheBuster.java
@@ -0,0 +1,80 @@
+/*
+ * This file is part of ARSnova Backend.
+ * Copyright (C) 2012-2015 The ARSnova Team
+ *
+ * ARSnova Backend is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * ARSnova Backend is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package de.thm.arsnova.dao;
+
+import org.springframework.cache.annotation.CacheEvict;
+import org.springframework.stereotype.Component;
+
+import de.thm.arsnova.events.DeleteAllLectureAnswersEvent;
+import de.thm.arsnova.events.DeleteAllPreparationAnswersEvent;
+import de.thm.arsnova.events.DeleteAllQuestionsAnswersEvent;
+import de.thm.arsnova.events.DeleteAnswerEvent;
+import de.thm.arsnova.events.DeleteFeedbackForSessionsEvent;
+import de.thm.arsnova.events.DeleteInterposedQuestionEvent;
+import de.thm.arsnova.events.DeleteQuestionEvent;
+import de.thm.arsnova.events.NewAnswerEvent;
+import de.thm.arsnova.events.NewFeedbackEvent;
+import de.thm.arsnova.events.NewInterposedQuestionEvent;
+import de.thm.arsnova.events.NewQuestionEvent;
+import de.thm.arsnova.events.NovaEventVisitor;
+import de.thm.arsnova.events.StatusSessionEvent;
+
+/**
+ * This class is used to evict caches based on events. The events carry all necessary information to clear the
+ * caches, e.g, for a specific session.
+ */
+@Component
+public class CacheBuster implements ICacheBuster, NovaEventVisitor {
+
+	@Override
+	public void visit(NewInterposedQuestionEvent event) {}
+
+	@Override
+	public void visit(DeleteInterposedQuestionEvent event) {}
+
+	@Override
+	public void visit(NewQuestionEvent event) {}
+
+	@CacheEvict(value = "answers", key = "#event.Session")
+	@Override
+	public void visit(NewAnswerEvent event) {}
+
+	@Override
+	public void visit(DeleteAnswerEvent event) {}
+
+	@Override
+	public void visit(DeleteQuestionEvent event) {}
+
+	@Override
+	public void visit(DeleteAllQuestionsAnswersEvent event) {}
+
+	@Override
+	public void visit(DeleteAllPreparationAnswersEvent event) {}
+
+	@Override
+	public void visit(DeleteAllLectureAnswersEvent event) {}
+
+	@Override
+	public void visit(NewFeedbackEvent event) {}
+
+	@Override
+	public void visit(DeleteFeedbackForSessionsEvent event) {}
+
+	@Override
+	public void visit(StatusSessionEvent event) {}
+}
diff --git a/src/main/java/de/thm/arsnova/dao/ICacheBuster.java b/src/main/java/de/thm/arsnova/dao/ICacheBuster.java
new file mode 100644
index 0000000000000000000000000000000000000000..f173d2b4806cadfe6efda5905462bafe464c295c
--- /dev/null
+++ b/src/main/java/de/thm/arsnova/dao/ICacheBuster.java
@@ -0,0 +1,23 @@
+/*
+ * This file is part of ARSnova Backend.
+ * Copyright (C) 2012-2015 The ARSnova Team
+ *
+ * ARSnova Backend is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * ARSnova Backend is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package de.thm.arsnova.dao;
+
+/**
+ * This interface is used as a tag to make Spring dependency injection happy...
+ */
+public interface ICacheBuster {}