If you are actually doing a blog, it will be quite a while before you have
too many records - more than 3 years of blogging to hit a thousand records
if you write one a day. A non-optimal but feasible searching solution could
be achieved through OpenBD:

On app startup load all your posts to memcahced. Then when somebody
searches:

<cfloop array="AllBlogPosts" item="CurrentPost">
   <cfif FindNoCase(CurrentPost.Title, Keyword)
OR FindNoCase(CurrentPost.Body, Keyword)>
       <!-- display blog post -->
   </cfif>
</cfloop>

Baz

-- 
Open BlueDragon Public Mailing List
 http://www.openbluedragon.org/   http://twitter.com/OpenBlueDragon
 mailing list - http://groups.google.com/group/openbd?hl=en

 !! save a network - please trim replies before posting !!

Reply via email to