Displaying 2 results from an estimated 2 matches for "froo".
Did you mean:
from
2006 Apr 05
0
DreamHost and "froo handler"
I just started using DreamHost, and http://rtest.openprofile.net is the
first Rails site I put there. I read the information in their wiki about
setup, since I hadn''t used Rails with Apache before, and dutifully added
the recommended "froo handler" to dispatch.fcgi.
Bad idea. I sprouted endless dispatch.fcgi processes, and had to kill
off a handful every hour or two.
I tried various things, none of which worked, and finally tried taking
the routine out. Voila, it''s all fixed. One copy of dispatch.fcgi
running, good...
2006 Jan 21
7
n-way joins
...value
foos_bars_bazs_frozs - 4 way join
froz_id\
foo_id \
bar_id \ primary key/unique
baz_id /
value
Now, my use cases for access are:
1. Given a foo, find all { bar, baz, value } associated with it (i''d
really like to get back bars and bazs, not just their ids)
2. Given a froz and froo, find all { bar, baz, values } associated with
them (again, i''d like to get bar and baz back as objects, not id''s }
3. Given a foo, insert a new {foo,bar,baz,value} tuple into the 3 way
join.
4. Given a froz and a food, insert a new {froz,foo,bar,baz,value} tuple
into the 4 way...