Open GoogleCodeExporter opened 8 years ago
如果是经常登录各论坛的,最好放弃这种多server的配置。因��
�各论坛的登录多以IP为准,你以A的IP登录,随即以B甚至C的IP�
��求数据,论坛就认为那不是一个人,就会再次要求你登录。
其结果就是反复登录,却一直不能保持任何IP的登录。
Original comment by congxz6...@gmail.com
on 19 Sep 2010 at 4:49
目前是在发现503错误的时候才会切换到下一个代理,
理论上来说,不会比使用一个fetch server更差。:)
Original comment by james.fa...@gmail.com
on 4 Sep 2011 at 11:47
+import random
+random.seed()
+
+def choose_fetch_server():
+ global fetch_servers, change_fetch_server
+ if not fetch_servers:
+ fetch_servers = fetch_server.split(';')
+ return fetch_servers[random.randint(0, len(fetch_servers)-1)]
修改choose_fetch_server为上述,可以实现类似round-robin的策略,��
�次请求随机选择一个fetch server。
刚刚重新考虑了一下congxz6说的问题,就算使用一个fetch
server,在app engine端,也不一定能够
保证是同一个ip出去的,所以,理论上,随机选择一个fetch
server跟使用同一个fetch server效果差不多。还是“不会更差”
Original comment by james.fa...@gmail.com
on 4 Sep 2011 at 3:12
我是新手,不明白,
下载后如何使用,光改客户端没用。
是否要用python重新生成一个exe?
加在proxy.py最后就可以了?
Original comment by gxs...@gmail.com
on 27 Sep 2011 at 12:36
Original issue reported on code.google.com by
james.fa...@gmail.com
on 17 Sep 2010 at 5:43Attachments: