Hello,

Thank you for great module. I've found that for module deploy_uuid.module in hook_user calls requests to DB not cached, so I've added small piece of code to make it cached. Patch attached. Basically it eliminate multiple queries to DB for the same info (UUID in this case)

Regards,
Pavel

CommentFileSizeAuthor
deploy_uuid.module.patch1.47 KBpavel.karoukin

Comments

gdd’s picture

Status: Needs review » Closed (won't fix)

The problem with this is that when using batch API, which Deploy does use, the static cache is useless because it gets cleared on page reloads. So this can actually end up making performance (slightly) worse. It's a good idea though.