We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eebbfe commit 8243a9bCopy full SHA for 8243a9b
1 file changed
Silocean/0003/Test.py
@@ -0,0 +1,10 @@
1
+# -*-coding:utf-8-*-
2
+__author__ = 'Tracy'
3
+import redis, uuid
4
+
5
+r = redis.StrictRedis(host='localhost', port=6379)
6
+for i in range(200):
7
+ r.set('key_id'+str(i), uuid.uuid1())
8
9
10
+ print(r.get("key_id"+str(i)))
0 commit comments