gpt4 book ai didi

python postgres游标时间戳问题

转载 作者:太空狗 更新时间:2023-10-30 01:17:45 25 4
gpt4 key购买 nike

我对事务数据库有些陌生,遇到了一个我试图理解的问题。

我创建了一个简单的演示,其中数据库连接存储在由 cherrypy 创建的 5 个线程中的每一个中。我有一个方法可以显示存储在数据库中的时间戳表和一个用于添加新时间戳记录的按钮。

该表有 2 个字段,一个用于 python 传递的 datetime.datetime.now() 时间戳,一个用于设置为默认 NOW() 的数据库时间戳。


CREATE TABLE test (given_time timestamp,
default_time timestamp DEFAULT NOW());

我有两种与数据库交互的方法。第一个将创建一个新的游标,插入一个新的 given_timestamp,提交游标,然后返回到索引页。第二种方法将创建一个新游标,选择 10 个最近的时间戳并将它们返回给调用者。


import sys
import datetime
import psycopg2
import cherrypy

def connect(thread_index):
# Create a connection and store it in the current thread
cherrypy.thread_data.db = psycopg2.connect('dbname=timestamps')

# Tell CherryPy to call "connect" for each thread, when it starts up
cherrypy.engine.subscribe('start_thread', connect)

class Root:
@cherrypy.expose
def index(self):
html = []
html.append("<html><body>")

html.append("<table border=1><thead>")
html.append("<tr><td>Given Time</td><td>Default Time</td></tr>")
html.append("</thead><tbody>")

for given, default in self.get_timestamps():
html.append("<tr><td>%s<td>%s" % (given, default))

html.append("</tbody>")
html.append("</table>")

html.append("<form action='add_timestamp' method='post'>")
html.append("<input type='submit' value='Add Timestamp'/>")
html.append("</form>")

html.append("</body></html>")
return "\n".join(html)

@cherrypy.expose
def add_timestamp(self):
c = cherrypy.thread_data.db.cursor()
now = datetime.datetime.now()
c.execute("insert into test (given_time) values ('%s')" % now)
c.connection.commit()
c.close()
raise cherrypy.HTTPRedirect('/')

def get_timestamps(self):
c = cherrypy.thread_data.db.cursor()
c.execute("select * from test order by given_time desc limit 10")
records = c.fetchall()
c.close()
return records

if __name__ == '__main__':

cherrypy.config.update({'server.socket_host': '0.0.0.0',
'server.socket_port': 8081,
'server.thread_pool': 5,
'tools.log_headers.on': False,
})

cherrypy.quickstart(Root())

我希望 given_time 和 default_time 时间戳彼此仅相差几微秒。但是我有一些奇怪的行为。如果我每隔几秒添加一次时间戳,则 default_time 与 given_time 相差几微秒,但通常与 previous given_time 相差几微秒。

Given Time                  Default Time2009-03-18 09:31:30.725017  2009-03-18 09:31:25.2188712009-03-18 09:31:25.198022  2009-03-18 09:31:17.6420102009-03-18 09:31:17.622439  2009-03-18 09:31:08.2667202009-03-18 09:31:08.246084  2009-03-18 09:31:01.9701202009-03-18 09:31:01.950780  2009-03-18 09:30:53.5710902009-03-18 09:30:53.550952  2009-03-18 09:30:47.2607952009-03-18 09:30:47.239150  2009-03-18 09:30:41.1773182009-03-18 09:30:41.151950  2009-03-18 09:30:36.0050372009-03-18 09:30:35.983541  2009-03-18 09:30:31.6666792009-03-18 09:30:31.649717  2009-03-18 09:30:28.319693

然而,如果我大约每分钟添加一次新的时间戳,则 given_time 和 default_time 都会像预期的那样仅相差几微秒。然而,在提交第 6 个时间戳(线程数 + 1)后,default_time 与第一个 given_time 时间戳相差几微秒。

Given Time                  Default Time2009-03-18 09:38:15.906788  2009-03-18 09:33:58.8390752009-03-18 09:37:19.520227  2009-03-18 09:37:19.5202932009-03-18 09:36:04.744987  2009-03-18 09:36:04.7450392009-03-18 09:35:05.958962  2009-03-18 09:35:05.9590532009-03-18 09:34:10.961227  2009-03-18 09:34:10.9612982009-03-18 09:33:58.822138  2009-03-18 09:33:55.423485

尽管我在每次使用后明确关闭游标,但似乎仍在重复使用前一个游标。如果我在完成游标后关闭游标并每次都创建一个新游标,那怎么可能呢?有人可以解释一下这里发生了什么吗?

接近答案:

我在 get_timestamps 方法中添加了一个 cursor.connection.commit() ,它现在为我提供了带有时间戳的准确数据。任何人都可以解释为什么当我所做的只是选择时我可能需要调用 cursor.connection.commit() 吗?我猜每次我得到一个游标时,一个事务就会开始(或者继续一个它被提交的现有事务单元)。有没有更好的方法来做到这一点,或者无论我用那个光标做什么,我每次得到一个光标时都坚持提交?

最佳答案

尝试按照模块文档中的描述调用 c.close():http://tools.cherrypy.org/wiki/Databases

def add_timestamp(self):
c = cherrypy.thread_data.db.cursor()
now = datetime.datetime.now()
c.execute("insert into test (given_time) values ('%s')" % now)
c.connection.commit()
c.close()
raise cherrypy.HTTPRedirect('/')

def get_timestamps(self):
c = cherrypy.thread_data.db.cursor()
c.execute("select * from test order by given_time desc limit 10")
records = c.fetchall()
c.close()
return records

关于python postgres游标时间戳问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/655125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com