What length does '1024**2' signify in GAE Search API TextField docs?

122 Views Asked by At

I'm planning to use GAE's Search API for some fulltext string indexing but am unsure of what something in the documentation means:

Text Field: A string with maximum length 1024**2 characters.

1

There are 1 best solutions below

0
On BEST ANSWER

It's Python syntax for 1024 squared. Documentation:

[the operator] yields its left argument raised to the power of its right argument.