I know that Search service is not stable enough, so this is just a kind of 
bug report.

I've been playing with Search API. Looks amazing! But I noticed it return a 
record twice when it meet more than one search filter. For example:

results = index.search(
    search.Query(
        query_string = '(name:Christopher AND lastname:Ramirez)',
        options = search.QueryOptions(
            limit=50, sort_options=search.SortOptions(
                expressions=[search.SortExpression(
                    expression='name', default_value='')],
                limit=100)
        )
    )
)


With th above code, records which match both filters (NAME and LASTNAME) 
will be returned twice.

Also, Development SDK 1.6.6 throws an exception if a use a non ASCII char 
in the above filter string. The production enviroment didn't throw any 
error.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/5FDFHKjnAdEJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to