package com.gxx.record.service;
import java.util.List;
/**
*
* - Title:
* -
* redis服务接口
* - Description:
* -
*
* none
*
*
* @author Administrator
* @version 1.0, 2015年7月19日
* @since record
*
*/
public interface RedisService {
/**
* set
*
* @param key
* @param value
* @return
*/
public boolean set(String key, Object value);
/**
* get
*
* @param key
* @return
*/
public Object get(String key);
/**
* delete
*
* @param key
* @return
*/
public Object delete(String key);
/**
* listLeftPush
*
* @param key
* @return
*/
public long listLeftPush(String key, String url);
/**
* listRightPush
*
* @param key
* @return
*/
public long listRightPush(String key, String url);
/**
* listRange
*
* @param key
* @return
*/
public List