-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathdt-geo.js
59 lines (51 loc) · 1.17 KB
/
dt-geo.js
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
// EXAMPLE: geo_tutorial
// HIDE_START
import assert from 'assert';
import { createClient } from 'redis';
const client = createClient();
await client.connect();
// HIDE_END
// REMOVE_START
await client.del('bikes:rentable')
// REMOVE_END
// STEP_START geoAdd
const res1 = await client.geoAdd('bikes:rentable', {
longitude: -122.27652,
latitude: 37.805186,
member: 'station:1'
});
console.log(res1) // 1
const res2 = await client.geoAdd('bikes:rentable', {
longitude: -122.2674626,
latitude: 37.8062344,
member: 'station:2'
});
console.log(res2) // 1
const res3 = await client.geoAdd('bikes:rentable', {
longitude: -122.2469854,
latitude: 37.8104049,
member: 'station:3'
})
console.log(res3) // 1
// STEP_END
// REMOVE_START
assert.equal(res1, 1);
assert.equal(res2, 1);
assert.equal(res3, 1);
// REMOVE_END
// STEP_START geoSearch
const res4 = await client.geoSearch(
'bikes:rentable', {
longitude: -122.27652,
latitude: 37.805186,
},
{ radius: 5,
unit: 'km'
}
);
console.log(res4) // ['station:1', 'station:2', 'station:3']
// STEP_END
// REMOVE_START
assert.deepEqual(res4, ['station:1', 'station:2', 'station:3']);
// REMOVE_END
await client.quit()