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

ai.grakn.redismock.commands.RO_set Maven / Gradle / Ivy

There is a newer version: 0.1.6
Show newest version
package ai.grakn.redismock.commands;

import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;

import java.util.List;

class RO_set extends AbstractRedisOperation {
    RO_set(RedisBase base, List params) {
        super(base, params, 2, null, null);
    }

    public RO_set(RedisBase base, List params, Integer i) {
        super(base, params, i, null,null);
    }

    long valueToSet(List params){
        return -1L;
    }

    Slice response() {
        base().rawPut(params().get(0), params().get(1), valueToSet(params()));
        return Response.OK;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy