module Octopus::Persistence
Public Instance Methods
decrement!(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 39 def decrement!(*args) run_on_shard { super } end
delete()
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 19 def delete run_on_shard { super } end
destroy()
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 23 def destroy run_on_shard { super } end
increment!(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 35 def increment!(*args) run_on_shard { super } end
reload(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 15 def reload(*args) run_on_shard { super } end
touch(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 27 def touch(*args) run_on_shard { super } end
update_attribute(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 3 def update_attribute(*args) run_on_shard { super } end
update_attributes(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 7 def update_attributes(*args) run_on_shard { super } end
update_attributes!(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 11 def update_attributes!(*args) run_on_shard { super } end
update_column(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 31 def update_column(*args) run_on_shard { super } end