diff --git a/trunk/src/go.hoteas.com/hotime/.idea/workspace.xml b/trunk/src/go.hoteas.com/hotime/.idea/workspace.xml
index 651b310..9d1f5e9 100644
--- a/trunk/src/go.hoteas.com/hotime/.idea/workspace.xml
+++ b/trunk/src/go.hoteas.com/hotime/.idea/workspace.xml
@@ -5,10 +5,10 @@
-
+
-
+
@@ -29,15 +29,25 @@
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
@@ -51,7 +61,7 @@
-
+
@@ -63,8 +73,8 @@
-
-
+
+
@@ -73,7 +83,7 @@
-
+
@@ -84,7 +94,7 @@
-
+
@@ -93,8 +103,8 @@
-
-
+
+
@@ -103,8 +113,8 @@
-
-
+
+
@@ -113,18 +123,8 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
@@ -187,7 +187,6 @@
-
@@ -195,8 +194,9 @@
-
+
+
@@ -232,8 +232,6 @@
-
-
@@ -257,11 +255,19 @@
+
+
+
+
+
+
+
+
@@ -467,6 +473,7 @@
+
1500458878821
@@ -668,7 +675,7 @@
-
+
@@ -689,18 +696,18 @@
+
-
-
+
-
+
@@ -733,12 +740,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -756,7 +847,7 @@
-
+
@@ -769,18 +860,11 @@
-
-
-
-
-
-
-
-
+
-
+
@@ -788,14 +872,14 @@
-
+
-
+
@@ -803,8 +887,8 @@
-
-
+
+
@@ -819,7 +903,7 @@
-
+
@@ -827,36 +911,44 @@
-
-
-
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
diff --git a/trunk/src/go.hoteas.com/hotime/example/config/config.json b/trunk/src/go.hoteas.com/hotime/example/config/config.json
index ed25874..abbe2c8 100644
--- a/trunk/src/go.hoteas.com/hotime/example/config/config.json
+++ b/trunk/src/go.hoteas.com/hotime/example/config/config.json
@@ -12,7 +12,7 @@
],
"error": {},
"logLevel": 0,
- "port": "80",
+ "port": "8080",
"redisHost": "192.168.6.254:6379",
"redisPort": "6379",
"redisPwd": "9rusdfjk482fjdfo2e023",
diff --git a/trunk/src/go.hoteas.com/hotime/example/main.go b/trunk/src/go.hoteas.com/hotime/example/main.go
index 92ce947..e2da3f8 100644
--- a/trunk/src/go.hoteas.com/hotime/example/main.go
+++ b/trunk/src/go.hoteas.com/hotime/example/main.go
@@ -5,8 +5,9 @@ import (
"fmt"
_ "github.com/go-sql-driver/mysql"
"go.hoteas.com/hotime"
- "go.hoteas.com/hotime/cache"
+ //"go.hoteas.com/hotime/cache"
"golang.org/x/net/websocket"
+ "time"
)
func main() {
@@ -32,14 +33,8 @@ func main() {
appIns.SetConfig("example/config/config.json")
- ca:=hotime.CacheIns(&cache.CacheRedis{Host:appIns.Config.GetString("redisHost"),Pwd:appIns.Config.GetString("redisPwd"),Time:appIns.Config.GetCeilInt64("cacheLongTime")})
+ //ca:=hotime.CacheIns(&cache.CacheRedis{Host:appIns.Config.GetString("redisHost"),Pwd:appIns.Config.GetString("redisPwd"),Time:appIns.Config.GetCeilInt64("cacheLongTime")})
- ca.Cache("x",hotime.Map{"1":"2132"})
- fmt.Println(ca.Cache("x").ToMap())
- fmt.Println(ca.Cache("x",nil).Data)
- fmt.Println(ca.Cache("x",nil).Data)
- fmt.Println(ca.Cache("x").Data)
- fmt.Println(ca.Cache("x").Data)
appIns.SetConnectDB(func(err ...*hotime.Error) *sql.DB {
query := appIns.Config.GetString("dbUser") + ":" + appIns.Config.GetString("dbPwd") +
"@tcp(" + appIns.Config.GetString("dbHost") + ":" + appIns.Config.GetString("dbPort") + ")/" + appIns.Config.GetString("dbName") + "?charset=utf8"
@@ -81,7 +76,11 @@ func main() {
for true {
msg := make([]byte, 5120)
n, err := ws.Read(msg)
+ go func() {
+ time.Sleep(time.Second*5)
+ ws.Write([]byte("dsadasdasgregergrerge"))
+ }()
if err != nil {
return
}
diff --git a/trunk/src/go.hoteas.com/hotime/example/tpt/index.html b/trunk/src/go.hoteas.com/hotime/example/tpt/index.html
index 9325721..15b5748 100644
--- a/trunk/src/go.hoteas.com/hotime/example/tpt/index.html
+++ b/trunk/src/go.hoteas.com/hotime/example/tpt/index.html
@@ -1,10 +1,28 @@
-
+
-
- Title
+
+ Sample of websocket with golang
+
+
+
-
+
+
+
\ No newline at end of file