Forum OpenACS Q&A: Re: How do I build search capabilities into a new application?

Ryan,

if you want to make old content searchable, you have to populate the search_observer_queue with an ad hoc query like this (not tested):

insert into search_observer_queue (
select entry_id, current_timestamp, 'INSERT'
from faq_q_and_as);