Rails List wrote: > I am creating forum application which needs usage of acts_as_list or > acts_as_tree or acts_as_nested_set. > > I am unable to decide among these. please could some one recommend from > their experience?
Don't use acts_as_tree -- its data structure is simple but inefficient for querying. Use awesome_nested_set instead. Depending on what you're doing, acts_as_list may be useful as well (and it works in conjunction with awesome_nested_set). Best, -- Marnen Laibow-Koser http://www.marnen.org [email protected] -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

