-
Notifications
You must be signed in to change notification settings - Fork 0
/
pagingExample.go
56 lines (50 loc) · 1.31 KB
/
pagingExample.go
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
package main
import (
"fmt"
"github.com/gocql/gocql"
)
func main() {
/*
create table example.itoa(id int, description text, PRIMARY KEY(id));
insert into example.itoa (id, description) values (1, 'one');
insert into example.itoa (id, description) values (2, 'two');
insert into example.itoa (id, description) values (3, 'three');
insert into example.itoa (id, description) values (4, 'four');
insert into example.itoa (id, description) values (5, 'five');
insert into example.itoa (id, description) values (6, 'six');
*/
cluster := gocql.NewCluster("127.0.0.1", "127.0.0.2", "127.0.0.3")
cluster.Keyspace = "example"
cluster.ProtoVersion = 4
session, err := cluster.CreateSession()
if err != nil {
panic(err)
}
defer session.Close()
var pageState []byte
for {
iter := session.Query(`SELECT id, description FROM itoa`).PageSize(2).PageState(pageState).Iter()
nextPageState := iter.PageState()
scanner := iter.Scanner()
for scanner.Next() {
var (
id int
description string
)
err = scanner.Scan(&id, &description)
if err != nil {
panic(err)
}
fmt.Println(id, description)
}
err = scanner.Err()
if err != nil {
panic(err)
}
fmt.Printf("next page state: %+v\n", nextPageState)
if len(nextPageState) == 0 {
break
}
pageState = nextPageState
}
}