-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathmain.go
More file actions
69 lines (56 loc) · 1.42 KB
/
main.go
File metadata and controls
69 lines (56 loc) · 1.42 KB
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
package main
import (
"fmt"
"github.com/devfeel/dotweb"
"github.com/devfeel/dotweb/cache"
"github.com/devfeel/dotweb/framework/file"
"strconv"
)
func main() {
//初始化DotServer
app := dotweb.New()
//设置dotserver日志目录
app.SetLogPath(file.GetCurrentDirectory())
//设置gzip开关
//app.HttpServer.SetEnabledGzip(true)
//设置路由
InitRoute(app.HttpServer)
//启动 监控服务
//app.SetPProfConfig(true, 8081)
app.SetCache(cache.NewRuntimeCache())
//app.SetCache(cache.NewRedisCache("127.0.0.1:6379"))
err := app.Cache().Set("g", "gv", 20)
if err != nil {
fmt.Println("Cache Set ", err)
}
// 开始服务
port := 8080
fmt.Println("dotweb.StartServer => " + strconv.Itoa(port))
err = app.StartServer(port)
fmt.Println("dotweb.StartServer error => ", err)
}
type UserInfo struct {
UserName string
Sex int
}
func One(ctx dotweb.Context) error {
g, err := ctx.Cache().GetString("g")
if err != nil {
g = err.Error()
}
_, err = ctx.Cache().Incr("count")
return ctx.WriteString("One [" + g + "] " + fmt.Sprint(err))
}
func Two(ctx dotweb.Context) error {
g, err := ctx.Cache().GetString("g")
if err != nil {
g = err.Error()
}
_, err = ctx.Cache().Incr("count")
c, _ := ctx.Cache().GetString("count")
return ctx.WriteString("Two [" + g + "] [" + c + "] " + fmt.Sprint(err))
}
func InitRoute(server *dotweb.HttpServer) {
server.Router().GET("/1", One)
server.Router().GET("/2", Two)
}