class TestSpeedRetrieval(webapp.RequestHandler):
"""
Test retrieval times of various important records in the BigTable database
"""
def get(self):
commandValidated = True
beginTime = time()
itemList = Subscriber.all().fetch(1000)
for item in itemList:
pass
endTime = time()
self.response.out.write("<br/>Subscribers count=" + str(len(itemList)) +
" Duration=" + duration(beginTime,endTime))
如何将上述内容转换为传递类名称的函数? 在上面的示例中,Subscriber(在Subscriber.all(。。fetch语句中)是一个类名,这是您使用Python在Google BigTable中定义数据表的方式。
我想做这样的事情:
TestRetrievalOfClass(Subscriber)
or TestRetrievalOfClass("Subscriber")
谢谢, 尼尔沃尔特斯
答案 0 :(得分:25)
class TestSpeedRetrieval(webapp.RequestHandler):
"""
Test retrieval times of various important records in the BigTable database
"""
def __init__(self, cls):
self.cls = cls
def get(self):
commandValidated = True
beginTime = time()
itemList = self.cls.all().fetch(1000)
for item in itemList:
pass
endTime = time()
self.response.out.write("<br/>%s count=%d Duration=%s" % (self.cls.__name__, len(itemList), duration(beginTime,endTime))
TestRetrievalOfClass(Subscriber)
答案 1 :(得分:12)
如果直接传递类对象,就像在“喜欢这个”和“或”之间的代码一样,
您可以将其名称作为__name__
属性。
从名称开始(如在代码之后的“或”中)使得检索类对象非常困难(并且不明确),除非您有关于类对象可能位置的一些指示包含 - 所以为什么不传递类对象?!
答案 2 :(得分:2)
我使用的Ned代码略有不同。这是一个Web应用程序, 所以我通过URL运行get例程来启动它:http://localhost:8080/TestSpeedRetrieval。我没有看到 init 的需要。
class TestSpeedRetrieval(webapp.RequestHandler):
"""
Test retrieval times of various important records in the BigTable database
"""
def speedTestForRecordType(self, recordTypeClassname):
beginTime = time()
itemList = recordTypeClassname.all().fetch(1000)
for item in itemList:
pass # just because we almost always loop through the records to put them somewhere
endTime = time()
self.response.out.write("<br/>%s count=%d Duration=%s" %
(recordTypeClassname.__name__, len(itemList), duration(beginTime,endTime)))
def get(self):
self.speedTestForRecordType(Subscriber)
self.speedTestForRecordType(_AppEngineUtilities_SessionData)
self.speedTestForRecordType(CustomLog)
输出:
Subscriber count=11 Duration=0:2
_AppEngineUtilities_SessionData count=14 Duration=0:1
CustomLog count=5 Duration=0:2