Displaying 20 results from an estimated 10000 matches similar to: "search with like operation from a table"
2006 Jan 03
5
Announcement: Indexed Search Engine 0.1.2 Available
Hello all.
Apologies... I was a little too eager in my earlier annoucement about
the Indexed Search Engine for Rails apps. The DB migration file
contained an error that had to be worked around. I''ve fixed that,
added more (and clearer) documentation, and a sample application. You
can find most everything you want to know about Indexed Search Engine
here:
2006 Jan 22
7
: Indexed Search Engine 0.1.3 Released
Hello all,
IndexedSearch Engine for Rails Engines version 0.1.3 has been released.
IndexedSearch is a simple, pluggable engine for rails applications which can
be used to enable full text indexed searches within an application.
Searchable data is parsed, stemmed using the Porter stemmer, and added to a
fully indexed table. This allows you to index things like "he runs fast"
which will
2006 Jan 11
17
Different Types of Users and User Engine
My question is how have people implemented different types of users in
their Web applications using user-engine?
As for my application, I use single table inheritance in order to derive
several different types of users, such as "moderators," "editors," etc
...
For example, let''s say that I want to create a moderator. I define a new
moderator class and Controller like
2006 Jan 16
5
Soft Deletes
How would I go about setting up my rails applications to soft delete
items from the database rather than actually deleting it. I would
imagine that I need to over ride the methods from ActiveRecord.
Where would I do this would it be in the model? enviroment.rb? I
would imagine that if i wanted it throughout my entire application it
would need to be in the enviroment.rb.
Also to
2006 Jan 10
13
# of entrys in different months
right now im writing a weblog as my first project in rails. Most tings
seems to be working great :), but there is (a least) one thing left i
can''t figure out how to do.
As most weblogs i would like to have an archive, whick looks like this:
January 2006 (42)
December 2005 (60)
November 2005 (2)
October 2005 (101)
September 2005 (4)
August 2005 (2)
July 2005 (101010)
where (x) is the
2006 Jan 11
6
UK Rates for RoR Contract work?
Hi all,
I''ve been offered a short-term contract here in the North of England -
around 3 months work, but with RoR I think it will take considerably
less time - and am just curious what market rates were right now.
I''ve been offered a little under ?1k/week which seems ''right'' for a PHP
coder doing this kind of work, but should I be hitting for more, or is
2006 Jul 12
11
ruby rails performance
Hi-
We just finished our app and I tested for performance with httperf. Our
setup is browser -> apache2.2-> mod_poxy balancer-> mongrel cluster -> 3
mongrel servers.
I have noticed that the total request per second is is about 7.5. When I
increase the no of mongrel to 5, it inches up to 8 req/s.
My question is how bad or good this number is? We are on a old dell 2400
machine
2006 Jun 28
5
Production deployment
Gang-
We are getting ready to launch our ROR application; the last item
remaining is the deployment platform. For testing, we had used Apache +
MOD_FastCGI. I am not that impressed with it; sometimes it has strange
effects. For example, when we start the application, for about 5 minutes
or so, the app is very unstable and it gets better over time.
My questions is .. should I go with (1)
2006 Jun 30
3
gem Rmagick install problem on Linux
I get the following error when I try to install Rmagic (via gem) on
Linux. Do I need to install anyting before installing rmagic? This
worked seamlessly on windows. What the best way to install it on Linux.
I am on RedHat ES 3. /thanks
-thila
Attempting local installation of ''rmagick''
Local gem file not found: rmagick*.gem
Attempting remote installation of
2006 Jan 08
6
J2EE equivalent
Gang-
1. Is there anything in Ruby that handles the .properites files similar
to the J2EE application servers. Or do I need to define all of the
properties as constants?
2. Is there anyway I can load some of my classes (such as singletons)
during the startup? I am looking for the startup classes that J2EE
containers provide.
Thanks
--
Posted via http://www.ruby-forum.com/.
2006 Jun 20
3
Saving an array of objects
How do I save an array of obects into the database?
For now I am doing
for a in array
a.save
end.
I am sure there must be an easy way to do this.
--
Posted via http://www.ruby-forum.com/.
2006 Jan 18
5
Ruby and charting
Hi-
I need to create simple charts on the fly - I had used JFreeChart in the
past with inJ2EE apps. Is there any equivalent here for Ruby. My
charting needs are simple: just line charts.
Also if anyone has done this, pls let me know how I should go about in
doing it.
Thanks
--
Posted via http://www.ruby-forum.com/.
2003 Aug 12
1
Certification (was RE: realpath(3) et al)
Just saw this from eWeek.
"IBM, which paid roughly $500,000 for the testing, and SuSE
(pronounced "SOOS-ah") were announcing the certification
jointly. "
The article is here:
http://www.eweek.com/article2/0,3959,1212529,00.asp
--- Darren Reed <avalon@caligula.anu.edu.au> wrote:
> In some mail from twig les, sie said:
> >
> > I actually just asked
2006 Feb 17
0
: Indexed Search Engine 0.2.0 Released
The 0.2.0 release of the Indexed Search
Engine<http://lance.langwell-ball.com/pages/indexed-search>is
released. The Indexed Search Engine is a Ruby on Rails
Engine <http://rails-engines.org> which helps you to easily add quick
indexing and search capabilities to your application.
Check out the project
page<http://lance.langwell-ball.com/pages/indexed-search>for more
info.--
--
2006 Jun 21
2
access to application.rb methods
Why can''t I access the utility methods defined in applicaion.rb from the
model classes? If that does not work, where is the best place to put
common utility methods that must be available to all the models.
thanks
--
Posted via http://www.ruby-forum.com/.
2005 Dec 29
2
Login plugin
All-
I am new to Ruby; following are my two questions:
1. Which is the best login plugin? I keep hearing about SALT and
loginengine.
2. For installing loginengine; I see the two following steps - Both
these does not work for me. :
$ script/plugin install login_engine
==I am getting "script/plugin is not a internal or external
command, operable program or batch file"
2006 Jul 20
1
Override coulmn data type - urgent
Hi-
I have a BigInt (MySql) column type - RAILS treats it as FixNum, which
causes big problem for us since we need to store a 12+ number of digits.
How can I tell Rails to treat is as BigNum instead of FixNum?
thanks
thila
--
Posted via http://www.ruby-forum.com/.
2006 Jun 27
1
Static pages
I have lot of static pages in my applications (FAQs, Contacts, Privacy
etc..) What is the best way to handle (deploy) these pages in my
application. I am using Apache with fastcgi. I would like to deliver the
static pages from the apache itself.
Basically how the deployment is done? The catch is the user should be
easily navigate between the static and dynamic contents.
thanks
thila
--
2006 Jun 30
1
running in production mode
I am running apache with mod_fastcgi on Linux - I would like to run my
app in production mode, but I could not. Following is what I have in my
httpd.conf. Can someone tell me why it does not recognize the env
variable for production? The app always runs under development mode i.e
ignores the RAILS_ENV directive.
thanks/ thila.
<IfModule mod_fastcgi.c>
FastCgiIpcDir /tmp/fcgi_ipc/
2006 Jan 14
7
Application Design
Hi Railsers,
How do you design your applications? Do you start coding HTML? Start
with the controllers/models? Start in a program like
photoshop/gimp/illustrator/inkscape?
I start in inkscape, it''s a SVG editor. I sketch all the views of my
application, and then I create the views that belong to one controller
in RHTML. After that, I do the models/controller, and move on to the