Displaying 1 result from an estimated 1 matches for "investorzip".
Did you mean:
investor_id
2006 Mar 09
1
Missing fields in search result
...lt; Field.new("investorcity",
company.company_group.address.city, Field::Store::YES,
Field::Index::UNTOKENIZED)
doc << Field.new("investorstreet",
company.company_group.address.street, Field::Store::YES,
Field::Index::TOKENIZED)
doc << Field.new("investorzip", company.company_group.address.zip,
Field::Store::YES, Field::Index::UNTOKENIZED)
index << doc
logger.info "URL: " + doc["url"] # gets url, so doc is ok
end
# don''t close the index, but be sure to write it to the fs
index.optimize()...