Performing a "loose" search

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Performing a "loose" search

    Hello all,

    I'm trying to build a simple and "loose" search engine that will, for example,
    find "computer" if the user searches for "computor". The search is to be
    performed on a database, not full text. I've managed to accomplish this using
    the Verity search with the <TYPO> operator. The sequence is CFQUERY, CFINDEX,
    CFSEARCH. However, the results take about 20 seconds to appear, compared to the
    instantaneous results of a simple CFQUERY. Is Verity inherently slow, or have I
    done something wrong? Is there a way to use the <TYPO> operator directly at the
    CFQUERY, or some other method of creating a loose search? Thanks a lot.

    ironcito Guest

  2. Similar Questions and Discussions

    1. Inaccessible "search engine friendly" URL parameters (CF MX)
      Hi, I'm running developer edition of Macromedia MX using IIS and W2K server. MX is newly installed with default config options. I'm passing...
    2. Search information about using a terminal "CITOH" for a console front end to a Sun Server
      Hello all, I have retreived a terminal "CITOH CIT324" and I want to use it for a system console on a Sun Sparc Server. Unfortunatly there are...
    3. ... is text in slices "searchable" ... (by search engines)
      Hi ... I've done a few complex diagrams in Fireworks containing text-descriptions that appear and disappear according to active mouse-overs on a...
    4. Keyboard F9 key invokes unwanted internet "Search-aide"
      Hi there; As of a few days ago my F9 key was somehow re-assigned without my knowledge or permission. Instead of the native behaviour, I get a...
    5. How to make the "search text" feature work with non "txt" file
      On Fri, 27 Jun 2003 07:19:23 -0700, "Juergen" <anhorn@bktel.com> wrote: See MVP Doug Knox' comments and fix here:...
  3. #2

    Default Re: Performing a "loose" search


    You should be able to use the TYPE attribute of the cfsearch tag to select
    the explicit verity parser and you can then use the Verity Query Language in
    your searches. I don't know if VQL has the TYPO operator.

    In CFMX 7 we have added spelling correction features which will allow you to
    perform alternative keyword searches (either automatically or via user
    control) if the original search didn't return "enough" results (you get to
    define enough).

    Verity is not "slow", it whole purpose is to give you very fast searches.
    :-)

    --
    Tom Jordahl
    Macromedia Server Development


    Tom Jordahl Guest

  4. #3

    Default Re: Performing a "loose" search

    Hi,

    Thanks for your answer. I know Verity is supposed to speed up searches, but then why is my search taking around 20 seconds? It's an eternity in server time.
    ironcito Guest

  5. #4

    Default Re: Performing a "loose" search

    I don't know.

    - How much data are your searches returning?
    - Is Verity taking the time or is CF?
    - Have you optimized the collection?
    - How fast can you search using the command line Verity tools?

    --
    Tom Jordahl
    Macromedia Server Development


    Tom Jordahl Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139