chrismccord/render_sync

How to trigger sync without updating record?

Closed this issue · 4 comments

g8d3 commented

Hi,

I am currently doing record.update updated_at: Time.now to trigger that record sync actions.

I have been reading the code, but is not clear for me what method I should use to trigger sync without updating record. Is that possible?

The idea behind it is to save some DB load and do not pollute updated_at purpose. If that makes any sense.

ajb commented

sync_update(record) doesn't care if your record has actually been updated or not.

g8d3 commented

how do I use it? I tried Teacher.sync_update(record).

ajb commented

If you include Sync::Actions in a class, it will have access to the
sync_update class method.

On Wed, Jul 1, 2015 at 10:55 AM, Juan David Pastas <notifications@github.com

wrote:

how do I use it? I tried Teacher.sync_update(record).


Reply to this email directly or view it on GitHub
#193 (comment).

Adam Becker
(951) 9-BECKER
@AdamJacobBecker

g8d3 commented

I used extend instead of include, I will make a complete test.

Thanks a lot.