ต้องการเปลี่ยนเครื่องเซิร์ฟเวอร์ที่ใช้รัน Drupal จึงทดลองทดสอบเปรียบเทียบ Web Server และโปรแกรมที่ใช้รัน php รุ่นต่าง ๆ ไว้ดังนี้
บันทึกผลของการเลือกใช้ SELECT แบบต่าง ๆ เดเบียน Etch, Postgresql 8.1
SELECT
มีตารางสองตาราง
ลองทดสอบวัดประสิทธิภาพแบบคร่าว ๆ เพื่อหาวิธีการเขียนโค๊ด
เริ่มต้นด้วยการสร้างคลาสเพื่อจับเวลาก่อน
class TimeIt: import time def __init__(self): self.p_start=time.time() def use(self): t_now=time.time() t_use=t_now-self.p_start self.p_start=t_now return t_use
ตามด้วยการสั่งจากเชลล์ของไพธอน
import adodb conn = adodb.NewADOConnection("postgres") cur = conn.Connect(host, user, password, db) sql = """CREATE TABLE test (wordid SERIAL, word VARCHAR(255), PRIMARY KEY (wordid))""" cur = conn.Execute(sql)
แบบที่ ๑
def f1(): ttt = TimeIt() for i in range(1000):
There are currently 0 users online.
Recent comments