Test indexers...how do they work?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Raja Raman Sundararajan

    #1

    Test indexers...how do they work?

    Hello guys,
    I was investigating how one can use the "text indexers" in python
    and I stumbled across several ones. eg., pylucene

    I wanted to know how the algorithm of indexers look like. I have heard
    people talking about B-Trees. But this info. is simply know enough. I
    would like to know exactly each part of the indexing flow and the
    algorightm behind it work.

    Can someone here point me to the right material?

    Thanks!

  • gene tani

    #2
    Re: Test indexers...how do they work?


    Raja Raman Sundararajan wrote:[color=blue]
    > Hello guys,
    > I was investigating how one can use the "text indexers" in python
    > and I stumbled across several ones. eg., pylucene
    >
    > I wanted to know how the algorithm of indexers look like. I have heard
    > people talking about B-Trees. But this info. is simply know enough. I
    > would like to know exactly each part of the indexing flow and the
    > algorightm behind it work.
    >[/color]

    Info pls, are you talking about how Analyszers do stopwords and
    stemming / lemmatization? or how queries are handled, or how indexes
    (bitfields) are built / queried? I think Hatcher's book is the best
    place to start, tho doesn't focus intensively on lucene's
    implementation





    This *was* a pure python port, Lupy which i remember being pretty easy
    to follow, maybe you can get them to send it to you

    Comment

    • sjdevnull@yahoo.com

      #3
      Re: Test indexers...how do they work?

      Raja Raman Sundararajan wrote:[color=blue]
      > I wanted to know how the algorithm of indexers look like. I have heard
      > people talking about B-Trees. But this info. is simply know enough. I
      > would like to know exactly each part of the indexing flow and the
      > algorightm behind it work.[/color]

      Get the book "Managing Gigabytes: Compressing and Indexing Documents
      and Images".

      Comment

      Working...