forked from boostcampwm-2024/web15-OctoDocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis-test.js
66 lines (56 loc) · 1.3 KB
/
redis-test.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
60
61
62
63
64
65
66
const Redis = require("ioredis");
// Redis 클라이언트 생성
const redis = new Redis({
host: "localhost",
port: 6379,
});
// 여러 개의 node와 page 정보를 삽입하는 함수
async function insertData() {
const nodes = [];
const pages = [];
// node:1부터 node:100까지 생성
for (let i = 1; i <= 1000; i++) {
const x = 180;
const y = 479;
const color = "#FFFFFF";
// nodes.push({
// id: i,
// x: x,
// y: y,
// color: color,
// });
const content = `{"type":"doc","content":[{"type":"paragraph","content":[{"type":"text","text":"페이지 내용 ${i}"}]}]}`;
const title = `페이지 제목 ${i}`;
pages.push({
id: i,
content: content,
title: title,
});
}
// node 정보 삽입
// for (const node of nodes) {
// await redis.hmset(
// `node:${node.id}`,
// "x",
// node.x,
// "y",
// node.y,
// "color",
// node.color
// );
// console.log(`Inserted node:${node.id}`);
// }
// page 정보 삽입
for (const page of pages) {
await redis.hmset(
`page:${page.id}`,
"content",
page.content,
"title",
page.title
);
console.log(`Inserted page:${page.id}`);
}
console.log("Data insertion complete");
}
insertData();