Examples of ShardId


Examples of org.makersoft.shards.ShardId

@ShardStrategy(mapper = UserMapper.class)
public class UserShardStrategy implements SelectionStrategy<User>{
 
  public ShardId selectShardIdForNewObject(User entity) {
    if(User.SEX_MALE == entity.getGender()){
      return new ShardId(1);
    }else if(User.SEX_FEMALE == entity.getGender()){
      return new ShardId(2);
    }
   
    // 或指向写库
   
    return null;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.