We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
メッセージのアーカイブやIRCボット、タスクなどに ApplicationRecord.transaction で囲んでいる部分があるが、Mroongaはトランザクションにもセーブポイントにも対応していないので、意味がない。Railsはそうとは知らずにSQLの BEGIN〜COMMIT や SAVEPOINT を実行するので、挙動が読めなくなる。そのため、ApplicationRecord.transaction で囲むのはやめて、必要ならば自前で実装する。
ApplicationRecord.transaction
BEGIN
COMMIT
SAVEPOINT
The text was updated successfully, but these errors were encountered:
No branches or pull requests
メッセージのアーカイブやIRCボット、タスクなどに
ApplicationRecord.transaction
で囲んでいる部分があるが、Mroongaはトランザクションにもセーブポイントにも対応していないので、意味がない。Railsはそうとは知らずにSQLのBEGIN
〜COMMIT
やSAVEPOINT
を実行するので、挙動が読めなくなる。そのため、ApplicationRecord.transaction
で囲むのはやめて、必要ならば自前で実装する。The text was updated successfully, but these errors were encountered: