gpt4 book ai didi

spring - JdbcTokenStore - 性能不佳

转载 作者:行者123 更新时间:2023-12-01 15:22:22 24 4
gpt4 key购买 nike

我在 Spring JdbcTokenStore 上遇到了糟糕的性能,所以我调查了一下,发现以下缓慢的查询:

delete from oauth_access_token where token_id = ?
select token_id, authentication from oauth_access_token where token_id = ?
select token_id, token from oauth_access_token where authentication_id = ?

我检查了表格,似乎提供的脚本(例如,此处 https://github.com/spring-projects/spring-security-oauth/blob/master/spring-security-oauth2/src/test/resources/schema.sql )甚至没有为 oauth_access_token 表定义主键。

如何优化性能?我可以安全地将 token_id 定义为 outh_access_token 的 PK 并将唯一索引添加到 authentication_id 列吗?

谢谢朱利奥

最佳答案

我的 spring boot 应用程序也有类似的问题,在 token_id 列上创建唯一索引后,性能显着提高

关于spring - JdbcTokenStore - 性能不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25888501/

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