type Post struct {
ID uint64 `redis:"id"`
UserID int `redis:"user_id"`
Title string `redis:"title"`
Body string `redis:"body"`
CreatedAt uint64 `redis:"created_at"`
}
func (p *Post) GetKeySuffix() string {
return fmt.Sprint(p.ID)
}
func (p *Post) GetScoreMap() map[string]interface{} {
return map[string]interface{}{
"created_at": p.CreatedAt,
fmt.Sprintf("user:%d", p.UserID): p.CreatedAt,
}
}
var pool *redis.Pool
func main() {
pool = &redis.Pool{
Dial: func() (redis.Conn, error) {
return redis.DialURL("redis://localhost:6379")
},
}
store := ro.New(pool.Get, &Post{})
now := time.Now()
ctx := context.Background()
// Posts will be stored as Hash, and user:{{userID}} and created_at are stored as OrderedSet
store.Put(ctx, []*Post{
{
ID: 1,
UserID: 1,
Title: "post 1",
Body: "This is a post 1",
CreatedAt: now.UnixNano(),
},
{
ID: 2,
UserID: 2,
Title: "post 2",
Body: "This is a post 2",
CreatedAt: now.Add(-24 * 60 * 60 * time.Second).UnixNano(),
},
{
ID: 3,
UserID: 1,
Title: "post 3",
Body: "This is a post 3",
CreatedAt: now.Add(24 * 60 * 60 * time.Second).UnixNano(),
},
})
post := &Post{ID: 1}
_ := store.Get(ctx, post)
fmt.Println("%v", post)
// Output:
// Post{ID: 1, Title: "post 1", Body: "This is a post 1"}
posts := []*Post{}
_ := store.List(ctx, &posts, rq.Key("created_at"), rq.GtEq(now.UnixNano()), rq.Reverse())
fmt.Println("%v", posts[0])
// Output:
// Post{ID: 3, UserID: 1, Title: "post 3", Body: "This is a post 3"}
fmt.Println("%v", posts[1])
// Output:
// Post{ID: 1, UserID: 1, Title: "post 1", Body: "This is a post 1"}
cnt, _ := store.Count(ctx, rq.Key("user", 1), rq.Gt(now.UnixNano()), rq.Reverse())
fmt.Println(cnt)
// Output:
// 1
}
-
Notifications
You must be signed in to change notification settings - Fork 1
Redis Objects to Go
License
izumin5210/ro
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Redis Objects to Go
Topics
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published