DOC

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 Javadoc & API Documentation - Latest Versions:

All Versions

Download net.yesdata : dudu-RESP-interpreter Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.0.x

How to open Javadoc JAR file in web browser

  1. Rename the file dudu-RESP-interpreter-1.0.4-javadoc.jar to dudu-RESP-interpreter-1.0.4-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder dudu-RESP-interpreter-1.0.4-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "dudu-RESP-interpreter-1.0.4-sources.jar" -d "dudu-RESP-interpreter-1.0.4-javadoc" -subpackages 

Advertisement