All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yuweix.kuafu.sharding.strategy.Strategy Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.yuweix.kuafu.sharding.strategy;



/**
 * 分库分表策略
 * @author yuwei
 */
public interface Strategy {
    /**
     * @param dbName                     逻辑库名
     * @param tableName                  逻辑表名
     * @param shardingVal                分库字段的值
     * @return   返回如:gateway_0000,gateway_0001
     */
    String getPhysicalDatabaseName(String dbName, String tableName, T shardingVal);

    /**
     * @param tableName                  逻辑表名
     * @param shardingVal                分表字段的值
     * @return   返回如:user_0000,user_0001
     */
    String getPhysicalTableName(String tableName, T shardingVal);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy