zjm1126
zjm1126

Reputation: 66647

Best full-text search for google-app-engine

did you know the best full-text search on gae ?

thanks

Upvotes: 6

Views: 3094

Answers (3)

Evgeni Nabokov
Evgeni Nabokov

Reputation: 2571

Now we can use experimental Search API:

The Search API allows your application to perform Google-like searches over structured data. You can search across several different types of data (plain text, HTML, atom, numbers, dates, and geographic locations). Searches return a sorted list of matching text. You can customize the sorting and presentation of 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

Upvotes: 3

Jason Hall
Jason Hall

Reputation: 20920

Read this blog post which details how to add full-text search to App Engine models.

It also details how to make only certain fields searchable, and turn on stemming.

Upvotes: 3

Related Questions