Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
a0dff914
authored
2013-11-21 22:19:19 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
change third repo from other to beego
1 parent
c9418966
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
cache/memcache.go
cache/redis.go
config/xml.go
config/yaml.go
session/sess_mysql.go
session/sess_redis.go
cache/memcache.go
View file @
a0dff91
1
package
cache
1
package
cache
2
2
3
import
(
3
import
(
4
"code.google.com/p/vitess/go/memcache"
5
"encoding/json"
4
"encoding/json"
6
"errors"
5
"errors"
6
"github.com/beego/memcache"
7
)
7
)
8
8
9
type
MemcacheCache
struct
{
9
type
MemcacheCache
struct
{
...
...
cache/redis.go
View file @
a0dff91
...
@@ -3,7 +3,7 @@ package cache
...
@@ -3,7 +3,7 @@ package cache
3
import
(
3
import
(
4
"encoding/json"
4
"encoding/json"
5
"errors"
5
"errors"
6
"github.com/
garyburd
/redigo/redis"
6
"github.com/
beego
/redigo/redis"
7
)
7
)
8
8
9
var
(
9
var
(
...
...
config/xml.go
View file @
a0dff91
...
@@ -4,7 +4,7 @@ package config
...
@@ -4,7 +4,7 @@ package config
4
4
5
import
(
5
import
(
6
"errors"
6
"errors"
7
"github.com/
clbanning
/x2j"
7
"github.com/
beego
/x2j"
8
"io/ioutil"
8
"io/ioutil"
9
"os"
9
"os"
10
"strconv"
10
"strconv"
...
...
config/yaml.go
View file @
a0dff91
...
@@ -4,7 +4,7 @@ import (
...
@@ -4,7 +4,7 @@ import (
4
"bytes"
4
"bytes"
5
"encoding/json"
5
"encoding/json"
6
"errors"
6
"errors"
7
"github.com/
wendal
/goyaml2"
7
"github.com/
beego
/goyaml2"
8
"io/ioutil"
8
"io/ioutil"
9
"log"
9
"log"
10
"os"
10
"os"
...
...
session/sess_mysql.go
View file @
a0dff91
...
@@ -9,7 +9,7 @@ package session
...
@@ -9,7 +9,7 @@ package session
9
9
10
import
(
10
import
(
11
"database/sql"
11
"database/sql"
12
_
"github.com/
go-sql-driver
/mysql"
12
_
"github.com/
beego
/mysql"
13
"sync"
13
"sync"
14
"time"
14
"time"
15
)
15
)
...
...
session/sess_redis.go
View file @
a0dff91
1
package
session
1
package
session
2
2
3
import
(
3
import
(
4
"github.com/
garyburd
/redigo/redis"
4
"github.com/
beego
/redigo/redis"
5
"strconv"
5
"strconv"
6
"strings"
6
"strings"
7
"sync"
7
"sync"
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment