gpt4 book ai didi

Grails .save(刷新 : true) behaves the same with . save()

转载 作者:行者123 更新时间:2023-12-02 13:50:25 32 4
gpt4 key购买 nike

我们一直在测试一种不同的保存方式。然而,结果并不像我们预期的那样。我们有创建调查的方法,每个调查有多个问题。我们测试了几个案例,它们都以相同的方式提交查询。

@Transactional class Service {
Survey createNewSurvey(NewSurveyCommand command) {
Survey survey = new Survey()
survey.properties[] = command.properties
survey.save(flush: true, failOnError: true) //save survey and flush
for (NewQuestionCommand questionCommand : command.questions) {
Question question = new Question()
question.properties[] = questionCommand.properties
question.save(flush: true, failOnError: true) // save each questions and flush
}
return survey } }

第二个删除事务并保存而不刷新

 class Service {
Survey createNewSurvey(NewSurveyCommand command) {
Survey survey = new Survey()
survey.properties[] = command.properties
survey.save() //save survey and flush
for (NewQuestionCommand questionCommand : command.questions) {
Question question = new Question()
question.properties[] = questionCommand.properties
question.save() // save each questions and flush
}
return survey } }

第三次和第四次,一次有事务性,一次没有事务性。

class Service {
Survey createNewSurvey(NewSurveyCommand command) {
Survey survey = new Survey()
survey.properties[] = command.properties
survey.save() //save survey and flush
for (NewQuestionCommand questionCommand : command.questions) {
Question question = new Question()
question.properties[] = questionCommand.properties
survey.addToQuestions()
}
survey.save(flush: true, failOnError: true)
return survey } }

最后从 MySQL 日志中,我们检查到无论我们做了什么,所有插入都发生在一次提交内。

    Query    SET autocommit=0
Query insert into survey (version, brand ,...)
Query insert into question (version,..d)
Query insert into question (version,..d)
Query commit
Query SET autocommit=1

最后我们没有看到 .save(flush: true, failureOnError: true)、save() (有或没有 Transactional)之间有任何区别。

有人可以解释一下使用刷新保存不使用刷新如何工作吗?

Grails doc表示刷新(可选)- 当设置为 true 时,刷新持久化上下文,立即持久化对象。然而,在我们的案例中,我们看到,它并没有像医生所说的那样发生。还是我理解错了?

最佳答案

save() 不带 flush: true 不会启动数据库连接。调用 save() 后,数据仅保留在 Hibernate session 中。因此,在您的情况下,您不会在 MYSQL 日志文件中找到任何相关行。

save(flush: true) 立即在数据库级别启动事务。因此在第一次调用 save(flush: true) 后此时您应该已经在 MYSQL 日志文件中看到一些行,可能类似于:

Query    SET autocommit=0
Query insert into survey (version, brand ,...)

第二次调用save(flush: true)后,事务将在数据库上继续(不会再次启动,因此两次保存之间不会发生COMMIT)等级。您还可以看到添加到 MYSQL 日志文件中的行。

关于Grails .save(刷新 : true) behaves the same with . save(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45302963/

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