4

我有以下代码,它在线程内运行时(完整代码在这里 - https://github.com/eWizardII/homobabel/blob/master/lovebird.py

 for null in range(0,1):
            while True:
                try:
                    with open('C:/Twitter/tweets/user_0_' + str(self.id) + '.json', mode='w') as f:
                        f.write('[')
                        threadLock.acquire()
                        for i, seed in enumerate(Cursor(api.user_timeline,screen_name=self.ip).items(200)):
                            if i>0:
                                f.write(", ")
                            f.write("%s" % (json.dumps(dict(sc=seed.author.statuses_count))))
                            j = j + 1
                        threadLock.release()
                        f.write("]")
                except tweepy.TweepError, e:
                    with open('C:/Twitter/tweets/user_0_' + str(self.id) + '.json', mode='a') as f:
                        f.write("]")
                    print "ERROR on " + str(self.ip) + " Reason: ", e
                    with open('C:/Twitter/errors_0.txt', mode='a') as a_file:
                        new_ii = "ERROR on " + str(self.ip) + " Reason: " + str(e) + "\n"
                        a_file.write(new_ii)
                break

现在没有线程锁,我会生成以下错误:

Exception in thread Thread-117: Traceback (most recent call last):   File "C:\Python27\lib\threading.py", line 530, in __bootstrap_inner
    self.run()   File "C:/Twitter/homobabel/lovebird.py", line 62, in run
    for i, seed in enumerate(Cursor(api.user_timeline,screen_name=self.ip).items(200)): File "build\bdist.win-amd64\egg\tweepy\cursor.py", line 110, in next
    self.current_page = self.page_iterator.next()   File "build\bdist.win-amd64\egg\tweepy\cursor.py", line 85, in next
    items = self.method(page=self.current_page,
*self.args, **self.kargs)   File "build\bdist.win-amd64\egg\tweepy\binder.py", line 196, in _call
    return method.execute()   File "build\bdist.win-amd64\egg\tweepy\binder.py", line 182, in execute
    result = self.api.parser.parse(self, resp.read())   File "build\bdist.win-amd64\egg\tweepy\parsers.py", line 75, in parse
    result = model.parse_list(method.api, json)   File "build\bdist.win-amd64\egg\tweepy\models.py", line 38, in parse_list
    results.append(cls.parse(api, obj))   File "build\bdist.win-amd64\egg\tweepy\models.py", line 49, in parse
    user = User.parse(api, v)   File "build\bdist.win-amd64\egg\tweepy\models.py", line 86, in parse
    setattr(user, k, parse_datetime(v))   File "build\bdist.win-amd64\egg\tweepy\utils.py", line 17, in parse_datetime
    date = datetime(*(time.strptime(string, '%a %b %d %H:%M:%S +0000 %Y')[0:6]))   File "C:\Python27\lib\_strptime.py", line 454, in _strptime_time
    return _strptime(data_string, format)[0]   File "C:\Python27\lib\_strptime.py", line 300, in _strptime
    _TimeRE_cache = TimeRE()   File "C:\Python27\lib\_strptime.py", line 188, in __init__
    self.locale_time = LocaleTime()   File "C:\Python27\lib\_strptime.py", line 77, in __init__
    raise ValueError("locale changed during initialization") ValueError: locale changed during initialization

问题在于线程锁定,每个线程基本上都是串行运行的,并且每个循环运行都需要很长时间才能使线程不再具有任何优势。因此,如果没有办法摆脱线程锁,有没有办法让它在 try 语句中更快地运行 for 循环?

4

2 回答 2

6

根据StackOverflow 上的先前答案time.strptime,它不是线程安全的。不幸的是,该问题中引用的错误与您遇到的错误不同。

他们的解决方案是time.strptime在初始化任何线程之前调用,然后time.strptime在各个线程中的后续调用将起作用。

我认为在查看标准库模块后,相同的解决方案可能适用于您的情况。我不能确定它会起作用,因为我无法在本地测试你的代码,但我想我会为你提供一个潜在的解决方案。_strptimelocale

让我知道这个是否奏效。

编辑:

我做了更多的研究,Python 标准库正在setlocaleClocale.h头文件中调用。根据setlocale 文档,这不是线程安全的,并且调用setlocale应该在初始化线程之前发生,正如我之前提到的。

不幸的是,setlocale每次调用时都会调用time.strptime. 所以,我建议如下:

  1. 测试之前提出的解决方案,尝试time.strptime在初始化线程之前调用并移除锁。
  2. 如果 #1 不起作用,您可能需要滚动您自己time.strptime的线程安全函数,如locale模块的 Python 文档中所述。
于 2011-01-07T13:27:02.197 回答
2

您遇到的问题与缺少使用的函数和模块的线程安全性有关。

正如您在此处看到的,tweepy不是可重入的,也不是线程安全的。正如您在此处看到的,PythonLocaleTime不是。

对于像您这样的多线程应用程序,通过您自己的同步(RLock'ed)类包装tweepy API。但不要tweepy 类派生,与 tweepy 实例的私有属性建立has-a关系。

于 2011-01-07T14:08:54.240 回答