vote up 0 vote down star

Hi,

Am wondering if anyone can provide some guidance on how I might implement a starts with or ends with query against a Datastore model using Python?

In pseudo code, it would work something like...

Query for all entities A where property P starts with X

or

Query for all entities B where property P ends with X

Thanks, Matt

flag

2 Answers

vote up 2 vote down check

You can do a 'starts with' query by using inequality filters:

MyModel.all().filter('prop >=', prefix).filter('prop <', prefix + u'\ufffd')

Doing an 'ends with' query would require storing the reverse of the string, then applying the same tactic as above.

link|flag
Thanks. This worked in combination with storing the data in same case (either lower or upper). Appreciate the help :) – Matty Oct 12 at 15:49
@Matty, yet another case in which nonrelational DBs require denormalization (based on knowing the important queries) for efficiency. Sigh, but, we'd better all get used to it!-) – Alex Martelli Oct 13 at 2:23
vote up 1 vote down

Seems you can't do it for the general case, but can do it for prefix searches (starts with):

http://stackoverflow.com/questions/1402769/wildcard-search-on-appengine-in-python

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.