Feed on
Posts
Comments

Archive for June, 2007

Here some of tips for increasing speed of rails application.
First :- Convert all ruby based query to sql based query.
User.find(:all).select do |u|
name == ‘#{filter_text}’
end
instead of this type query,Use sql format
User.find(:all,:condtions => “name = ‘#{filter_text}’” ;) Second :- Try to use include facility in query. Thesetype of query will fetch all child table records in one query [...]

Read Full Post »

1st August 2005 We all three (Giri, Niveditha) went to Our first company. That day we all little bit scared because that was our first day of our carrier as software engineer. We met with HR and that day another two friends(rakesh and ranjeet) are joined the company.First day we just completed the formalities and [...]

Read Full Post »