public String cacheable()

in src/main/java/com/example/redis/controller/SpringSessionController.java [43:51]


	public String cacheable(Model model) {
		Instant start = Instant.now();
		service.longExecutingMethod();
		Instant finish = Instant.now();

		model.addAttribute("duration", Duration.between(start, finish).toMillis());

		return "cacheable";
	}