mirror of
https://github.com/EchoVault/SugarDB.git
synced 2025-10-28 02:01:40 +08:00
Added resp package for encoding and decoding resp messages.
Created encoding functions for the following commands: ping, set, setnx, get, mget, incr, incrby, incrbyfloat. Created utils packages for shared utility functions.
This commit is contained in:
13
vendor/github.com/tidwall/resp/doc.go
generated
vendored
Normal file
13
vendor/github.com/tidwall/resp/doc.go
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
// Copyright 2016 Josh Baker. All rights reserved.
|
||||
// Use of this source code is governed by a MIT-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
/*
|
||||
Package resp provides a reader, writer, and server implementation for the RESP protocol. http://redis.io/topics/protocol
|
||||
|
||||
RESP is short for "REdis Serialization Protocol".
|
||||
While the protocol was designed specifically for Redis, it can be used for other client-server software projects.
|
||||
|
||||
RESP has the advantages of being human readable and with performance of a binary protocol.
|
||||
*/
|
||||
package resp
|
||||
Reference in New Issue
Block a user