使用golang的http模块构建redis读写查api

前端之家收集整理的这篇文章主要介绍了使用golang的http模块构建redis读写查api前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原文出处:http://www.jb51.cc/article/p-wqmxalhu-ng.html

支持该文原创作者 rfyiamcool 的博客 峰云,就她了。


前沿:

这两天试着用golang做一些高性能的api,不想把压力到聚合在平台的接口上。平台因为要做很多耗时间的操作,uwsgi下会出现少许错误,找了一圈不知道如何解决该问题。 暂时先绕道而行,先拿简单的接口来做测试,慢慢的把复杂的操作也迁移到golang上。

话说以前高性能的接口,我用的最多的方案还是Nginx lua的组合,超强,大家可以看看我以前写的Nginx lua的文章,各方面没得说。只是这段时间正在看golang 的,就试着用golang实现redis的api,先来个简单的试试手。


里面引用的是golang自带的http模块,redis是自己down的。

golang redis的配置方法

1
2
3
4
@H_301_47@cd $GOPATH/src
@H_301_47@git clone git: //github.com/alphazero/Go-Redis.git redis
@H_301_47@cd redis
@H_301_47@go install

先简单说下,golang对于redis的操作方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//xiaorui.cc
package main
import (
"os" ;
"bufio" ;
"log" ;
"fmt" ;
"redis" ;
)
/*
hello world,redis style.
*/
func main () {
// create the client. Here we are using a synchronous client.
// Using the default ConnectionSpec ,we are specifying the client to connect
// to db 13 (e.g. SELECT 13), and a password of go-redis (e.g. AUTH go-redis)
spec := redis. DefaultSpec (). Db (13). Password ( "go-redis" );
client,e := redis. NewSynchClientWithSpec (spec);
if e != nil { log. Println ( "Failed to create the client" ,e); return }
key := "examples/hello/user.name" ;
value,e := client. Get (key);
if e!= nil { log. Println ( "error on Get" ,e); return }
if value == nil {
fmt. Printf ( "\nHello,don't believe we've met before!\nYour name? " );
reader:= bufio. NewReader (os. Stdin );
user,_ := reader. ReadString (byte( '\n' ));
if len(user) > 1 {
user = user[ 0:len (user)-1];
value = []byte(user);
client. Set (key,value);
} else {
fmt. Printf ( "vafanculo!\n" );
return;
}
}
fmt. Printf ( "Hey,ciao %s!\n" ,fmt. Sprintf ( "%s" ,value));
}

我写的实例,大家看懂了后,完全可以做更多的扩展。


其实golang自带的http很有mvc的感觉,三者做了一些分离,很像python里面的web.py tornado。。。

测试结果:

服务端的启动

wKioL1Mrmi3Qj3nVAAHGNMEWAPA108.jpg

客户端的测试

wKiom1MrmkSg8_TGAATqDvHKzoA311.jpg

原文:http://www.jb51.cc/article/p-wqmxalhu-ng.html


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//xiaorui.cc
package @H_301_47@main
import @H_301_47@(
"fmt"
"net/http"
"io/IoUtil"
"log"
"time"
"redis"
@H_301_47@)
//xiaorui.cc
const @H_301_47@AddForm = `
@H_301_47@<html><body>
@H_301_47@<form method= "POST" @H_301_47@action= "/add" @H_301_47@>
@H_301_47@Name: <input type= "text" @H_301_47@name= "name" @H_301_47@>
@H_301_47@Age: <input type= "text" @H_301_47@name= "age" @H_301_47@>
@H_301_47@<input type= "submit" @H_301_47@value= "Add" @H_301_47@>
@H_301_47@</form>
@H_301_47@</body></html>
@H_301_47@`
const @H_301_47@setform = `
@H_301_47@<html><body>
@H_301_47@<form method= "POST" @H_301_47@action= "/set" @H_301_47@>
@H_301_47@key: <input type= "text" @H_301_47@name= "key" @H_301_47@>
@H_301_47@value: <input type= "text" @H_301_47@name= "value" @H_301_47@>
@H_301_47@<input type= "submit" @H_301_47@value= "set" @H_301_47@>
@H_301_47@</form>
@H_301_47@</body></html>
@H_301_47@`
@H_301_47@func Handler( w http.ResponseWriter,r *http.Request ){
@H_301_47@path := r.URL.Path[ 1 @H_301_47@:]
if @H_301_47@path == "favicon.ico" @H_301_47@{
@H_301_47@http.NotFound(w,r)
return
@H_301_47@}
if @H_301_47@path == "" @H_301_47@{
@H_301_47@path = "index.html"
@H_301_47@}
@H_301_47@contents,err:= IoUtil.ReadFile( path )
if @H_301_47@err !=nil{
@H_301_47@fmt.Fprintf( w, "404" @H_301_47@)
return
@H_301_47@}
@H_301_47@fmt.Fprintf( w, "%s\n" @H_301_47@,contents )
@H_301_47@}
@H_301_47@func Add( w http.ResponseWriter,r *http.Request ){
@H_301_47@name := r.FormValue( "name" @H_301_47@)
@H_301_47@age := r.FormValue( "age" @H_301_47@)
if @H_301_47@name == "" @H_301_47@|| age == "" @H_301_47@{
@H_301_47@fmt.Fprint(w,AddForm)
return
@H_301_47@}
@H_301_47@fmt.Fprintf(w, "Save : Your name is %s,You age is %s" @H_301_47@,name,age)
@H_301_47@}
@H_301_47@func redisset( w http.ResponseWriter,r *http.Request ){
@H_301_47@key := r.FormValue( "key" @H_301_47@)
@H_301_47@value := r.FormValue( "value" @H_301_47@)
if @H_301_47@key == "" @H_301_47@|| value == "" @H_301_47@{
@H_301_47@fmt.Fprint(w,setform)
return
@H_301_47@}
@H_301_47@spec := redis.DefaultSpec().Db( 0 @H_301_47@).Password( "" @H_301_47@);
@H_301_47@client,e := redis.NewSynchClientWithSpec (spec);
if @H_301_47@e != nil { log.Println ( "服务器连接有异常" @H_301_47@,e); return @H_301_47@}
@H_301_47@inva := []byte(value)
@H_301_47@client.Set(key,inva);
@H_301_47@fmt.Fprintf(w, "哥们,你输入的key %s 和value %s 已经插入到redis里面了" @H_301_47@,key,key)
@H_301_47@}
@H_301_47@func redisget( w http.ResponseWriter,r *http.Request ){
@H_301_47@key := r.FormValue( "key" @H_301_47@)
if @H_301_47@key == "" @H_301_47@{
@H_301_47@fmt.Fprint(w,setform)
return
@H_301_47@}
@H_301_47@spec := redis.DefaultSpec().Db( 0 @H_301_47@).Password( "" @H_301_47@);
@H_301_47@client,e := redis.NewSynchClientWithSpec (spec);
if @H_301_47@e != nil { log.Println ( "服务器连接有异常" @H_301_47@,e); return @H_301_47@}
@H_301_47@value,e := client.Get(key);
@H_301_47@fmt.Fprintf(w, "哥们,你要查询的key %s 和value %s " @H_301_47@,value)
@H_301_47@}
@H_301_47@func valueget(w http.ResponseWriter,r *http.Request) {
@H_301_47@params := r.URL.Query()
@H_301_47@user := params.Get( "user" @H_301_47@)
@H_301_47@fmt.Fprintf(w, "you are get user %s" @H_301_47@,user)
@H_301_47@}
@H_301_47@func main(){
@H_301_47@http.HandleFunc( "/" @H_301_47@,Handler)
@H_301_47@http.HandleFunc( "/add" @H_301_47@,Add)
@H_301_47@http.HandleFunc( "/redisset" @H_301_47@,redisset)
@H_301_47@http.HandleFunc( "/redisget" @H_301_47@,redisget)
@H_301_47@http.HandleFunc( "/valueget" @H_301_47@,valueget)
@H_301_47@s := &http.Server{
@H_301_47@Addr: ":80" @H_301_47@,
@H_301_47@ReadTimeout: 30 @H_301_47@* time.Second,
@H_301_47@WriteTimeout: 30 @H_301_47@* time.Second,
@H_301_47@MaxHeaderBytes: 1 @H_301_47@<< 20 @H_301_47@,
@H_301_47@}
@H_301_47@log.Fatal(s.ListenAndServe())
@H_301_47@}

对于go的基础教程,我也写过其他的文章,大家可以参考下。


关于Golang语言的web编程的实例及常见问题

http://www.jb51.cc/article/p-cvbhvbgk-ng.html

关于Go语言在服务端做Restful接口和socket通信

http://www.jb51.cc/article/p-usbcgzmu-ng.html


原文出处:http://www.jb51.cc/article/p-wqmxalhu-ng.html

支持该文原创作者 rfyiamcool 的博客 峰云,就她了。

猜你在找的Go相关文章