1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee
tools/netease_music/todo.txt

39 lines
2.1 KiB
Plaintext
Raw Normal View History

2022-10-07 00:26:46 +08:00
cd C:\Users\Coz\Desktop\tools\
cd /www/neteasemusic/tools
2022-10-19 13:37:06 +08:00
node index --utils song --min 1800000000 --max 2000000000 --order DESC #
2022-10-09 17:37:57 +08:00
node index --utils song --min 1290000000 --max 1500000000 --order DESC #
node index --utils song --min 400000000 --max 1000000000 --order ASC #
node index --utils song --min 0 --max 400000000 --order ASC #
2022-10-06 21:25:42 +08:00
#############################################################################################
2022-10-09 17:37:57 +08:00
node index --utils album --min 134000000 --max 160000000 #
node index --utils album --min 0 --max 134000000 #
2022-10-06 21:25:42 +08:00
#############################################################################################
2022-10-19 13:37:06 +08:00
node index --utils artist #
2022-10-06 21:25:42 +08:00
#############################################################################################
2022-10-19 13:37:06 +08:00
node index --utils comment --min 1800000000 --max 2000000000 --order DESC #
node index --utils comment --min 1290000000 --max 1500000000 --order DESC #
node index --utils comment --min 400000000 --max 1000000000 --order ASC #
node index --utils comment --min 0 --max 400000000 --order ASC #
2022-10-06 21:25:42 +08:00
#############################################################################################
2022-10-19 13:37:06 +08:00
node index --utils lyric --min 1800000000 --max 2000000000 #
2022-10-09 17:37:57 +08:00
node index --utils lyric --min 400000000 --max 1000000000 #
2022-10-19 13:37:06 +08:00
node index --utils lyric --min 0 --max 400000000 #
2022-10-06 14:01:05 +08:00
后期:
评论的更新
爬取歌单playlist
2022-10-09 17:37:57 +08:00
被删除的aritst和album回头再通过其他表中的数据反查回来
后续分区(不能在现有表上修改,只能重新查出数据到新表)
alter table song add partition (
PARTITION p1 VALUES LESS THAN ( 50000000),
PARTITION p2 VALUES LESS THAN (1000000000),
PARTITION p3 VALUES LESS THAN (1500000000),
PARTITION p4 VALUES LESS THAN (2000000000),
PARTITION p5 VALUES LESS THAN MAXVALUE
);