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

org.infinispan.server.resp.serialization.RespConstants Maven / Gradle / Ivy

There is a newer version: 15.1.4.Final
Show newest version
package org.infinispan.server.resp.serialization;

import java.nio.charset.StandardCharsets;

public interface RespConstants {
   byte NULL = '_';
   byte SIMPLE_STRING = '+';
   byte BULK_STRING = '$';
   byte ARRAY = '*';
   byte NUMERIC = ':';
   byte BOOLEAN = '#';
   byte DOUBLE = ',';
   byte BIG_NUMBER = '(';
   byte MAP = '%';
   byte SET = '~';
   String CRLF_STRING = "\r\n";

   byte[] CRLF = CRLF_STRING.getBytes(StandardCharsets.US_ASCII);
   String OK = "OK";
   String QUEUED_REPLY = "QUEUED";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy