com.alogic.cache.xscript.CacheHashDel Maven / Gradle / Ivy
package com.alogic.cache.xscript;
import java.util.Map;
import org.apache.commons.lang3.StringUtils;
import com.alogic.cache.CacheObject;
import com.alogic.xscript.ExecuteWatcher;
import com.alogic.xscript.Logiclet;
import com.alogic.xscript.LogicletContext;
import com.anysoft.util.Properties;
import com.anysoft.util.PropertiesConstants;
/**
* 删除Hash中指定分组
* @author yyduan
*
* @since 1.6.11.29
*/
public class CacheHashDel extends CacheObjectOperation{
/**
* 分组
*/
protected String $group = CacheObject.DEFAULT_GROUP;
/**
* 成员
*/
protected String $key;
public CacheHashDel(String tag, Logiclet p) {
super(tag, p);
}
@Override
public void configure(Properties p){
super.configure(p);
$group = PropertiesConstants.getRaw(p, "group", $group);
$key = PropertiesConstants.getRaw(p, "key", $key);
}
@Override
protected void onExecute(CacheObject cache, Map root,
Map current, LogicletContext ctx,
ExecuteWatcher watcher) {
String key = PropertiesConstants.transform(ctx, $key, "");
if (StringUtils.isNotEmpty(key)){
cache.hDel(
PropertiesConstants.transform(ctx, $group, CacheObject.DEFAULT_GROUP),
key
);
}else{
cache.hDel(
PropertiesConstants.transform(ctx, $group, CacheObject.DEFAULT_GROUP)
);
}
}
}