search for: hosten

Displaying 5 results from an estimated 5 matches for "hosten".

Did you mean: hosted
2005 Sep 10
4
has_too_many
Assuming you have Person that has_many :messages, what will it happen if it has 10000 messages? Will rails attempt to initialize @person.messages with 10000 rows from database? If that is the case, is combining finder_sql and counter_sql the common practice to avoid this? Bogdan _______________________________________________ Rails mailing list
2005 Sep 11
4
[RFC] The Early Demise of Myriad (Thanks To Ruby Threads)
Hi Everyone, I figured out this weekend that Ruby''s Thread implementation causes the Ruby/Event binding I wrote to completely stall and go dead. After reviewing the Ruby source and watching several strace runs, it''s clear that the Ruby Thread implementation uses select in a way that--while not being bad--just isn''t compatible with libevent. The second a thread is
2003 Mar 20
0
Misschien leuk voor u
...kwijt wilt, je naam, je adres, enz....... Je mag dus zo anoniem blijven als je wilt. Kosten: Lidmaatschap is gratis, maar je ontvangt elk jaar een uitnodiging voor een vrijwillige bijdrage. Deze bijdrage bedraagd slechts 6 euro per jaar. Betalende leden zorgen ervoor dat wij onze website kunnen hosten, en later leuke dingen kunnen organiseren. Er gaat veel meer gebeuren met dit geld, en uiteraard worden alle betalende leden op de hoogte gehouden van de inkomsten en uitgaven van de club. Wat gaat er gebeuren? Tot mei nog weinig! U wordt wel op de hoogte gehouden van tussentijdse besluiten en pr...
2005 Aug 19
13
Enumerations (again): Comments please
Some of my earlier questions may have hinted ever so slightly in the direction that I''m trying to implement "enumerations". By an enumeration here I mean a class that has a fixed number of immutable instances, which in turn have essentially only a name and a position. Requirements I''ve tried to meet are - Enumeration instances should only be loaded once from the
2005 Aug 08
68
Pluralized Controller Names?
If I do: script/generate controller Photo I get a controller named photo_controller. OTOH, if I do: script/generate scaffold Photo I get a controller named photos_controller. (Note that the controller name is pluralized). I realize that I''m specifying the controller name explicitly in the first case, but it seems odd to me that the scaffold command generates a pluralized