module Octopus::Rails3::Persistence
Public Instance Methods
delete()
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 20 def delete run_on_shard { super } end
destroy()
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 24 def destroy run_on_shard { super } end
reload(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 16 def reload(*args) run_on_shard { super } end
touch(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 28 def touch(*args) run_on_shard { super } end
update_attribute(*args)
click to toggle source
Calls superclass method
# File lib/octopus/persistence.rb, line 4 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 8 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 12 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 32 def update_column(*args) run_on_shard { super } end