I have a table that I'd like to keep pruned to the 500 most recent rows. What's the most efficient way to do this in rails?
|
feedback
|
|
One way to do it:
The | |||
|
feedback
|
|
This is definitely one way to do it, although someone may chime in with a more efficient way. Create a method in your controller, for this example I'll call it "prune", and call it after your create action (there may be an after_filter or something similar you can use.) It should look something like this.
| |||||
feedback
|
|
A basic solution would be to use the following script under a scheduling application like whenever https://github.com/javan/whenever to run the following command :
| |||
|
feedback
|