PassMark Logo
Home » Forum

Ignore numbers?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rboatright
    Newbie
    • Feb 2014
    • 1

    #1

    Ignore numbers?

    OK, I guess I could put *10, *11, *12 etc in my skip list, but it seems kind of silly. It would be really nice to have a way to tell this to simply not pay any attention to numbers.

    Additionally, I'm confused. If I have a word in my skip list, why does it still count towards the "unique words" count?

    Thanks in advance
  • Ray
    Administrator
    • Dec 2004
    • 4357

    #2
    Simply having:

    *0
    *1
    *2
    *3
    *4
    *5
    *6
    *7
    *8
    *9

    Will skip all numbers. You do not need to goto *10 or *11. Because they will contain the characters above already.

    Skip words still count towards unique words because of the Context description. All words that may need to appear in the context description will need to have an entry in the dictionary. What you do save however is index data for these numbers. So it aims to reduce the memory requirement, the index size, upload time, and search time of your search engine. It does not serve to reduce the number of unique words.
    --Ray
    Wrensoft Web Software
    Sydney, Australia
    Zoom Search Engine

    Comment

    • Williboss
      Newbie
      • Apr 2020
      • 1

      #3
      Originally posted by Ray View Post
      Simply having:

      *0
      *1
      *2
      *3
      *4
      *5
      *6
      *7
      *8
      *9

      Will skip all numbers. You do not need to goto *10 or *11. Because they will contain the characters above already.

      Skip words still count towards unique words because of the Context description. All words that may need to appear in the context description will need to have an entry in the dictionary. What you do save however is index data for these numbers. So it aims to reduce the memory requirement, the index size, upload time, and search time of your search engine. It does not serve to reduce the number of unique words.
      Oh thank you! You're a genius, dude

      Comment

      Working...