Skip to main content

constants.go

constants.go - Overview

This file defines a set of constant strings and integer used throughout the server application.

Detailed Documentation

Constants

  • EmptyStr: Represents an empty string.

    • Type: string
    • Value: ""
  • ObjectType: Represents the string value for the "object" type.

    • Type: string
    • Value: "object"
  • ArrayType: Represents the string value for the "array" type.

    • Type: string
    • Value: "array"
  • StringType: Represents the string value for the "string" type.

    • Type: string
    • Value: "string"
  • IntegerType: Represents the string value for the "integer" type.

    • Type: string
    • Value: "integer"
  • NumberType: Represents the string value for the "number" type.

    • Type: string
    • Value: "number"
  • BooleanType: Represents the string value for the "boolean" type.

    • Type: string
    • Value: "boolean"
  • NullType: Represents the string value for the "null" type.

    • Type: string
    • Value: "null"
  • UnknownType: Represents the string value for the "unknown" type.

    • Type: string
    • Value: "unknown"
  • NumberZeroValue: Represents the integer zero value.

    • Type: int
    • Value: 0
  • JSONIngest: Represents the string "JSON.INGEST".

    • Type: string
    • Value: "JSON.INGEST"
  • GET: Represents the string "GET".

    • Type: string
    • Value: "GET"
  • SET: Represents the string "SET".

    • Type: string
    • Value: "SET"
  • INCRBY: Represents the string "INCRBY".

    • Type: string
    • Value: "INCRBY"
  • OVERFLOW: Represents the string "OVERFLOW".

    • Type: string
    • Value: "OVERFLOW"
  • WRAP: Represents the string "WRAP".

    • Type: string
    • Value: "WRAP"
  • SAT: Represents the string "SAT".

    • Type: string
    • Value: "SAT"
  • FAIL: Represents the string "FAIL".

    • Type: string
    • Value: "FAIL"
  • SIGNED: Represents the string "SIGNED".

    • Type: string
    • Value: "SIGNED"
  • UNSIGNED: Represents the string "UNSIGNED".

    • Type: string
    • Value: "UNSIGNED"

Getting Started Relevance