@ CachePut 
 public Result updateUser (User user) {
}
 @ Cacheable 
 public Result getUserList () {
} 
 query the (getUserList) of all users and store it in the cache. After modifying the individual user information (updateUser), how to update the cache of all users? 
