Best full-text search for google-app-engine

Did you know the best full-text gae search?

thanks

+6
python google-app-engine django full-text-search
source share
3 answers

Read this blog post that details how to add full-text search to the App Engine model.

It also describes in detail how to make only certain fields to search, and enable string.

+3
source share

Now we can use the experimental search API:

The search API allows your application to perform searches similar to Google on structured data. You can search for several different types of data (plain text, HTML, atom, numbers, dates, and geographic location data). The search returns a sorted list of matching text. You can customize the sorting and presentation of the results.

Documentation: https://developers.google.com/appengine/docs/python/search/overview

Early presentation: http://www.google.com/events/io/2011/sessions/full-text-search.html

+3
source share
-2
source share

All Articles