jar

net.yesdata : dudu-RESP-interpreter

Maven & Gradle

Dec 21, 2016
0 stars

dudu-RESP-interpreter · REdis Serialization Protocol (RESP) implemented in java. You can simply construct string commands to RESP commands, and interpret redis response. By import net.yesdata.RESP_intepreter.* you can play with RESP with happy. How to format command string to RESP style? String command = "INFO"; IInterpreter intepreter = new DefaultRespInterpreter(); String sentCommand = intepreter.FormatCommand(command); How to read and print RESP style response? IInterpreter intepreter = new DefaultRespInterpreter(); List<IRespNode> respNodes = intepreter.IntepretResponse(responseBody); for(IRespNode n : respNodes) { System.out.println(n.toRespFormatString()); }

Table Of Contents

Latest Version

Download net.yesdata : dudu-RESP-interpreter JAR file - Latest Versions:

All Versions

Download net.yesdata : dudu-RESP-interpreter JAR file - All Versions:

Version Vulnerabilities Size Updated
1.0.x

View Java Class Source Code in JAR file

  1. Download JD-GUI to open JAR file and explore Java source code file (.class .java)
  2. Click menu "File → Open File..." or just drag-and-drop the JAR file in the JD-GUI window dudu-RESP-interpreter-1.0.4.jar file.
    Once you open a JAR file, all the java classes in the JAR file will be displayed.

net.yesdata.RESP_intepreter

├─ net.yesdata.RESP_intepreter.AbstractRespNode.class - [JAR]

├─ net.yesdata.RESP_intepreter.ArrayNode.class - [JAR]

├─ net.yesdata.RESP_intepreter.BulkStringNode.class - [JAR]

├─ net.yesdata.RESP_intepreter.ConstStrings.class - [JAR]

├─ net.yesdata.RESP_intepreter.DefaultRespInterpreter.class - [JAR]

├─ net.yesdata.RESP_intepreter.ErrorNode.class - [JAR]

├─ net.yesdata.RESP_intepreter.IInterpreter.class - [JAR]

├─ net.yesdata.RESP_intepreter.IRespNode.class - [JAR]

├─ net.yesdata.RESP_intepreter.IntegerNode.class - [JAR]

├─ net.yesdata.RESP_intepreter.RESP_DATA_TYPE.class - [JAR]

├─ net.yesdata.RESP_intepreter.RespResponseInterpretedResult.class - [JAR]

├─ net.yesdata.RESP_intepreter.SimpleStringNode.class - [JAR]

Advertisement