search for: leventali

Displaying 3 results from an estimated 3 matches for "leventali".

Did you mean: eventuali
2007 Apr 07
19
Constant 0.11.4 Errors
Folks, Since upgrading to ferret 0.11.4 on Mac OS X Tiger, I''ve been running into constant crashes when running my Rails tests. Here''s an example of the output. -- snip -- 1) Error: test_published_blog_can_be_ferreted(BlogTest): Ferret::FileNotFoundError: File Not Found Error occured at <except.c>:117 in xpop_context Error occured in fs_store.c:329 - fs_open_input
2007 Jul 19
1
Scheduler skipping schedules
There is a line in the backgroundrb codebase: sleep 0.1 # TODO this is dangerous; could skip over some jobs Could this explain why my scheduler stops triggering? It only seems to work for about 12 - 24 hours before schedules are being skipped... Once I changed the times to using cron trigger in backgroundrb_schedules.yml and set the times to every 37th and 59th minute of the hour, instead of
2007 May 15
1
how to index and search multiple foreign keys in aaf
Let''s say I have a class Job that has a series of possible locations that are stored as a sequence of foreign keys class Job acts_as_ferret { :locations => {} } def locations "1,25,23,15" # ?? end end Is that a good way to store the location ids? How would I search for Jobs in a certain location Job.find_by_contents(''locations(25)'') cheers