gossdb

command
v0.0.0-...-9a46783 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 21, 2019 License: Apache-2.0, BSD-3-Clause Imports: 4 Imported by: 0

README

SSDB Go API Documentation {#mainpage}

@author: ideawu

About

All SSDB operations go with ssdb.Client.Do(), it accepts variable arguments. The first argument of Do() is the SSDB command, for example "get", "set", etc. The rest arguments(maybe none) are the arguments of that command.

The Do() method will return an array of string if no error. The first element in that array is the response code, "ok" means the following elements in that array(maybe none) are valid results. The response code may be "not_found" if you are calling "get" on an non-exist key.

Refer to the PHP documentation to checkout a complete list of all avilable commands and corresponding responses.

gossdb is not thread-safe(goroutine-safe)

Never use one connection(returned by ssdb.Connect()) through multi goroutines, because the connection is not thread-safe.

Example

package main

import (
		"fmt"
		"os"
		"./ssdb"
	   )
	   
func main(){
	ip := "127.0.0.1";
	port := 8888;
	db, err := ssdb.Connect(ip, port);
	if(err != nil){
		os.Exit(1);
	}
	
	var val interface{};
	db.Set("a", "xxx");
	val, err = db.Get("a");
	fmt.Printf("%s\n", val);
	db.Del("a");
	val, err = db.Get("a");
	fmt.Printf("%s\n", val);
	
	db.Do("zset", "z", "a", 3);
	db.Do("multi_zset", "z", "b", -2, "c", 5, "d", 3);
	resp, err := db.Do("zrange", "z", 0, 10);
	if err != nil{
		os.Exit(1);
	}
	if len(resp) % 2 != 1{
		fmt.Printf("bad response");
		os.Exit(1);
	}
	
	fmt.Printf("Status: %s\n", resp[0]);
	for i:=1; i<len(resp); i+=2{
		fmt.Printf("  %s : %3s\n", resp[i], resp[i+1]);
	}
	return;
}

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL