I'm new to Rails I have a system call in my action of controller.
%x [ run_my_script ]
which will run for many hours... I found once i call the system call ,i can not open the same page again, because i guess the rails was busying in waiting for the return of the sys call.
if i want to execute the page in parrallel how should i do??? using thread? I have tried sidekiq , it will consuming lots lots of memory ! is there any ideas... thanks you all in advance.