Does GAE Datastore support 'partial text search'?

隐身守侯 提交于 2019-12-13 05:09:21

问题


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.


回答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.



来源:https://stackoverflow.com/questions/19377152/does-gae-datastore-support-partial-text-search

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!