it used revert index or just index
for example:
i insert some records 
1:"i am a boy"
2:"i am a girl"
3:"you are a boy"

what's the table stores like
option A: id,  content
          1,   i am a boy
          2,   i am a girl
          3,   you are a boy
option B: value, docid
          i    , 1,2
          am   , 1,2
          a    , 1,2,3
          boy  , 1,3
          girl , 2
          you  , 3
          are  , 3

it used struct A or B?
2009-11-20



ouwind
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to