NeuraQuiz
Categories
Quizzes
Practice
Blog
About
Login
Start Learning
Categories
Quizzes
Practice
Blog
About
Login
Start Learning
Spring Boot Application Deep Dive Quiz
Java
25:00
Question 1 of 40
ADVANCED
+1 XP
Previous
🏳️ Flag
Submit Quiz
Next
Question Navigator
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
ADVANCED
1 pts
java
📄 Snippet
Loading code snippet...
Complete the Spring Boot code snippet to implement a simple caching mechanism using Redis:
@Bean public CacheManager cacheManager() { return new SimpleCacheManager(); }
@Bean public RedisCacheManager cacheManager(RedisConnectionFactory connectionFactory) { RedisCacheManager cacheManager = RedisCacheManager.builder(connectionFactory).build(); return cacheManager; }
@Cacheable("users") public User getUser(String id) { // Fetch user from database }
@CacheEvict("users") public void deleteUser(String id) { // Delete user from database }