Displaying 20 results from an estimated 5000 matches similar to: "Is Ferret the standard rails search engine?"
2006 Aug 04
3
ForumExample
Is ForumExample ( http://wiki.rubyonrails.com/rails/pages/ForumExample/
)
the best jumping off point for building in basic commenting
functionality?
Thanks,
Greg
--
Posted via http://www.ruby-forum.com/.
2006 May 17
8
How to implement full-text search with OR just like google?
The current full-text search will return the AND collection results,for
example,if we use Article.search("aa bb"),then the articles that include
"aa" and "bb" in the fields will be returned,how to return the articles
that include "aa" OR "bb" effectly? A stumb method is to setup two
queries respectly and collect them together with remove the
2006 Jun 12
2
ferret / hyperestraier indexing time
since i cant manage to get the accelerated ferret going (amd64
incompatible C code) and hyperestraier returns 0 results for everything
after a reboot (despite claiming its index is every bit as big as
before) i made a simple rails inverted index that essentially just does
a find_or_create_by_word for each word, and then adds its id to a join
table linking words and documents..
the only
2006 Aug 01
3
Upload file to file system and sql insert date errors
I''m trying to use one form to upload a file to the file system
and insert a title and description field into the database.
I have no problem uploading files to the file system
using the code from
http://wiki.rubyonrails.com/rails/pages/HowtoUploadFiles
There are more fields on the form than need to be inserted into
the database, name and file.
I need to pull out these extra fields
2006 Jan 06
6
Help with TextSearch :all and MySQL
Hi,
I really need help with making the ''searches_on :all'' in Duane Johnson''s
TextSearch work with MySQL (not sure if it works with other db''s).
http://wiki.rubyonrails.com/rails/pages/TextSearch
I realize that there are other search packages out there. But this
particular solution best fits my small needs of searching a small
database.
I''ve gotten
2006 Oct 12
3
Ferret::StateError while using acts_as_ferret
I''m fairly new to ferret / aaf and finding it much easier to use than
HyperEstraier (which I migrated from). However, I am getting a few
errors and I need to figure out if they''re problems with my usage of
ferret or a bug I should report. I''m currently running Ferret 0.10.11
with acts_as_ferret (latest via svn external) and 3 times today I''ve
seen the
2006 Mar 31
7
Recommended search library?
I''m at a point where I''d like to start adding search capability to my
app, so I thought I''d ask:
Anyone have any recommendations for a good Rails search
library/plugin/etc? There seem to be quite a few different ones out
there, but I don''t have much context on any of them.
What is the difference between using Ferret, or a SearchGenerator,
SimpleSearch,
2009 Mar 08
3
scaling full text indexing(ferret vs solr vs hyperstraier)
Hi,
Does any have experience scaling full text search in RoR?
Right now our project is running a simple setup with ferret and
acts_as_ferret. We are thinking about deploying a feature that would
send 50x more search requests.
So we probably have to rethink our solution. How do services like
search.twitter.com (the former Summize) use?
Or in what direction should I look?
--
Thanks,
M.
2006 May 15
16
Ferret not able to read a Lucene Index?
Hi all,
Having problems trying to get Ferret to read an index generated by
Lucene.
Am I right in thinking Ferret should be able to read a Lucene generated
index no problem?
Using the code snippets detailed in
http://www.ruby-forum.com/topic/64099#new
Any advice gratefully received.
Many Thanks,
Steven
--
Posted via http://www.ruby-forum.com/.
2006 May 12
2
Benchmark - Thanks Dave for making this gnawer this FAST!!
Hi List,
I''ve took some time and made some tests on the performance of
java-lucene, hyperestraier and ferret as Dave encourages the community
of ferret to do so.
Quite intersting numbers. Ferret indeed deserves to be called a
high-performance port!!
It''s MyFirstBenchmark (
http://ferret.davebalmain.com/trac/wiki/MyFirstBenchmark ) so please
don''t be too cruel on
2009 Oct 15
1
Problems with rJava and tm packages
I am looking to do some text analysis using R and have run into some issues
with some of the packages. Im not sure if its my goofy Vista OS or what but
using R 2.8.1 i s relatively successful loading the text but the rJava
package was messed up somehow:
library(tm)
> library(rJava)
Error in if (!nchar(javahome)) stop("JAVA_HOME is not set and could not be
determined from the
2007 Jul 04
6
Inconsistent results when using wild card queries
We get some unexpected results when using wild card queries. We''re using
aaf and Ferret 0.11.4
For exampel, when seraching on a part of a collegues name (kristofer)
and limiting it to a specific source_id:
Query: source_id:25 AND kri*
Result: 2 documents. None of them containg the word kristofer, but other
matching words, as "kring" and "kring?" (swedish)
Query:
2020 Mar 30
3
Multithreaded encoding?
I am interested in being able to encode a single Opus stream using
several CPU cores.
I get a raw audio input and "opusenc" can transcode it at 1200% speed
(Raspberry PI 3B+). It saturates a single CPU core, but the other three
are idle.
Is out there any project to add multithreading options to "opusenc", or
something in that line?
Looking around, I have found this:
2008 Apr 20
1
Picolena, a ferret+rails documents search engine
Hi everybody!
I am proud to present you a small project I have been working on for a
while:
Picolena, a documents search engine written in Rails.
( http://picolena.devjavu.com/ ).
It obviously uses Ferret for indexing and searching, and adds some plain
text extractors in order to index OOffice.org, pdf and MS Office
documents (and some others as well).
Everything is packed in a gem (gem install
2007 Jun 24
1
Example for using ferret search engine
Hi,
Is there any application where I can see the usage of Ferret engine(like
example implementation). I have some difficulties in using it, sending
query and getting the results.
Thank you,
Raj.
--
Posted via http://www.ruby-forum.com/.
2008 Jun 06
4
Oracle text search
Hi,
I''ve been asked to move an application to Oracle.
It uses Ferret drb for text search [& its been really stable thank you
very much].
Any one have any thoughts on how to do text searching in Oracle?
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
2006 Jun 19
2
fuzzy search
This may be offtopic to Rails, but what are people doing to find records
based on fuzzy string matches? For example, if you wanted to find a
Person with name "David Heinemeier Hansson" but searched using the
string "Dave Hansson".
Currently I am find_by_sql that calls the PostgreSQL function
"levenshtein(string1, string2)" which returns results with a score
2014 Dec 09
5
get /full/path/filename.ext from filename.ext
This should be simple, but it's not, unless I'm forgetting something.
Writing a script, an arg is a filename. So
fname=$1
But I want that expanded to include the full path and filename, not just
what is given as the arg on the command line.
E.g., if the user's cwd is /home/joe/a/b/c/ and he specifies
../x/file-a.ext
then the function/utility should transform that into the
2006 Apr 26
4
How to search in your application?
I''ve got my app running with a table for product set up like the one
from the Agiles book and would like to create a page to search those
products. Is there a tutorial somewhere I can reference? I''ve gone
through the source code for typo and rails-weenie but can''t find all the
pieces to make it work on my own app.
Else, any help would be greatly appreciated..
--
2009 Jul 17
5
dsync - one or two ways?
dsync in Dovecot v2.0 tree is a new utility for syncing a mailbox in two
locations. Some things it can be used for:
- Initially transfer a mailbox to another server via SSH
- A faster sync done to an existing mailbox, sending only changes
- A superfast sync based on modification sequences.
- Source and destination mailboxes can use different formats
(convert-tool will be history)
dsync can