Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8771231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:44:00+00:00 2026-06-13T17:44:00+00:00

Using the GAE search API is it possible to search for a partial match?

  • 0

Using the GAE search API is it possible to search for a partial match?

I’m trying to create autocomplete functionality where the term would be a partial word. eg.

> b
> bui
> build

would all return “building”.

How is this possible with GAE?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T17:44:02+00:00Added an answer on June 13, 2026 at 5:44 pm

    Though LIKE statement (partial match) is not supported in Full Text Search, but you could hack around it.

    First, tokenize the data string for all possible substrings (hello = h, he, hel, lo, etc.)

    def tokenize_autocomplete(phrase):
        a = []
        for word in phrase.split():
            j = 1
            while True:
                for i in range(len(word) - j + 1):
                    a.append(word[i:i + j])
                if j == len(word):
                    break
                j += 1
        return a
    

    Build an index + document (Search API) using the tokenized strings

    index = search.Index(name='item_autocomplete')
    for item in items:  # item = ndb.model
        name = ','.join(tokenize_autocomplete(item.name))
        document = search.Document(
            doc_id=item.key.urlsafe(),
            fields=[search.TextField(name='name', value=name)])
        index.put(document)
    

    Perform search, and walah!

    results = search.Index(name="item_autocomplete").search("name:elo")
    

    https://code.luasoftware.com/tutorials/google-app-engine/partial-search-on-gae-with-search-api/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Overnight hack, trying to create an environment where GAE code (using Python libs/packages) could
I'm using GAE with python and I came across this problem, I'm trying to
I'm trying to get Django running on GAE using this tutorial . When I
I'm using GAE/Java with Objectify, and I'm trying to find the fastest way to
I am trying to build an application in GAE using python. I needs to
I am trying to POST an image to imageshack using their API and Play
I wrote a little application using GAE and the playframework. I am trying to
I am using GAE with Jersey for doing RESTful services. What would be recommended
I've developing a test app using GAE/J + Objectify and now trying to query
Hey i am using Ajax Autocomplete for Jquery by Tomas (http://www.devbridge.com/projects/autocomplete/jquery/) in my GAE

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.