0

I'm very beginner.

I want to make a information management system using Go language on Google App Engine. Users will create, edit, delete and search entities.

I have navigated GAE site, but could not find 'partial text search' on Datastore. Partial text search, I mean, search entities contain 'partial text' entered.

Or, can you give me a tip to make such a system. (for free)

Very Sorry for low-grade question.

Dan McGrath
  • 41,220
  • 11
  • 99
  • 130
Draft 7.30
  • 65
  • 1
  • 5

1 Answers1

1

You can't do this with the datastore, you need to use the full-text search API. Unfortunately, that is not yet available with Go: apparently the best way to use it is to set up a module in your app that uses Python2.7, and exposes the search functionality.

Daniel Roseman
  • 588,541
  • 66
  • 880
  • 895