我在数据库中有数千个网站,我想在所有网站上搜索特定的字符串。最快的方法是什么?我想我应该先得到每个网站的内容 - 这就是我这样做的方式:
import urllib2, re
string = "search string"
source = urllib2.urlopen("http://website1.com").read()
if re.search(word,source):
print "My search string: "+string
并搜索字符串。但这很慢。如何在python中加速它?
答案 0 :(得分:3)
我不认为您的问题是程序 - 事实上您正在为数千个站点执行HTTP请求。您可以研究涉及某种并行处理的不同解决方案,但无论您使用解析代码的效率如何,您都会遇到当前实现中的请求的瓶颈。
以下是使用Queue
和threading
模块的基本示例。我建议阅读多处理与多线程的好处(例如@JonathanV提到的帖子),但这有助于理解正在发生的事情:
import Queue
import threading
import time
import urllib2
my_sites = [
'http://news.ycombinator.com',
'http://news.google.com',
'http://news.yahoo.com',
'http://www.cnn.com'
]
# Create a queue for our processing
queue = Queue.Queue()
class MyThread(threading.Thread):
"""Create a thread to make the url call."""
def __init__(self, queue):
super(MyThread, self).__init__()
self.queue = queue
def run(self):
while True:
# Grab a url from our queue and make the call.
my_site = self.queue.get()
url = urllib2.urlopen(my_site)
# Grab a little data to make sure it is working
print url.read(1024)
# Send the signal to indicate the task has completed
self.queue.task_done()
def main():
# This will create a 'pool' of threads to use in our calls
for _ in range(4):
t = MyThread(queue)
# A daemon thread runs but does not block our main function from exiting
t.setDaemon(True)
# Start the thread
t.start()
# Now go through our site list and add each url to the queue
for site in my_sites:
queue.put(site)
# join() ensures that we wait until our queue is empty before exiting
queue.join()
if __name__ == '__main__':
start = time.time()
main()
print 'Total Time: {0}'.format(time.time() - start)
特别是关于threading
的良好资源,请参阅Doug Hellmann的帖子here,一篇IBM文章here(这已成为我的一般线程设置,如上所述)和实际docs here。
答案 1 :(得分:2)
尝试使用多处理同时运行多个搜索。多线程也可以工作,但如果管理不当,共享内存可能会变成诅咒。请查看this discussion,以帮助您了解哪种选择对您有用。