I'm trying to store revision comments using Enver's RevisionEntity so that it's in the same table as the revision ID and timestamp and is stored only once even if multiple entities are changed.
My current approach is
- controller action that handles the request puts comments into a session variable
- my custom RevisionListener reads the session variable, adds the comments to the RevisionEntity, and clears the session variable
I'm not that happy with this approach though. It seems like it will be prone to race conditions and other goofy behavior. Is there any way I can make this more solid? Maybe by accessing the RevisionEntity directly in the controller action?