コードでパフォーマンスの問題が発生しています。私は Python に少し慣れていないので、次のコードを実行するためのより良い方法を思いつきません。
django プロジェクトの一部ではない「cdr」というテーブルを持つ外部データベースがあり、行を使用していくつかの計算を行う必要があります。変数の値を取得するために、cdr テーブルのすべての行に対してクエリを作成していますが、これによりコードが非常に遅くなります。
これがview.pyの私のクラスです
def cdr_adm(request):
cursor = connections['cdr'].cursor()
cursor.execute("SELECT calldate, dst, billsec, accountcode, disposition, userfield FROM cdr where calldate >= '%s' and calldate < '%s' and disposition like '%s' and accountcode like '%s' and dst like '%s' and userfield like '%s'" %(start_date, end_date, status, customer, destino, provider))
result = cursor.fetchall()
time = 0
price = 0
price_prov = 0
count = 0
time_now = 0
ANS = 0
asr = 0
rate_cust = 0
rate_prov = 0
for call in result:
if call[3]:
#These 2 lines are the problem - It's very slow to run for all rows.
rate_cust = User.objects.get(username = call[3])
rate_prov = Provider.objects.get(name = call[5])
time_now = call[2] / 60
time = time + time_now
count = count + 1
price = price + (float(rate_cust.first_name) * time_now)
price_prov = price_prov + (float(rate_prov.rate) * time_now)
if call[4] == "ANSWERED":
ANS = ANS + 1
time = float(time)
lucro = price - price_prov
lucro = float(lucro)
if count > 0:
asr = (ANS / count) * 100
return render_to_response("cdr_all.html",
{'calls':result,'price':price,'time':time,'count':count,'customers':customers, 'providers':providers,'price_prov':price_prov, 'lucro':lucro, 'asr':asr }, context_instance=RequestContext(request))
辞書を作って調べようと思ったのですが、よくわかりません。