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 6080261
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:02:27+00:00 2026-05-23T11:02:27+00:00

My understanding is indexed lists on app engine are stored by duplicating all data

  • 0

My understanding is indexed lists on app engine are stored by duplicating all data for each value of the list. So multiple lists create cartesian product type explosions, and getting an entity requires gathering all of these “rows” (up to 5000) into 1 entity which google calls serialization overhead, and is best avoided. Is my understanding correct?

If this is how app engine works I am wondering if an unindexed list is stored in the same way (requires the same data duplication, and the same serialization overhead) or if they are stored in binary or something since you never need to know what they are for querying/retrieving.

So I guess what I’m asking is: Do unindexed lists have serialization overhead and a 5000 row limit? If so how can avoid this.

Thanks

  • 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-05-23T11:02:28+00:00Added an answer on May 23, 2026 at 11:02 am

    You’re confusing two different topics here. Indexed and unindexed lists alike are stored as part of a serialized entity protocol buffer, with each element of the list stored separately. There’s space overhead here, since the name of the property is stored with each element – foo = [1,2,3] gets stored as [(foo, 1), (foo, 2), (foo, 3)], in effect.

    Indexed lists are automatically added to the built-in indexes, with each list element requiring an index row. If you have two lists with 5 elements each, 10 index rows will be required in the built-in indexes.

    If you use custom indexes to define an index on multiple list properties, or the same list property multiple times, every unique combination of items will be indexed. So an entity with two lists a=[1,2,3] and b=[4,5,6] and an index on a and b will generate index entries [(1, 4), (1, 5), (1, 6), (2, 4), (2, 5), (2, 6), (3, 4), (3, 5), (3, 6)], and an entity with one list c=[7,8,9,10] and an index on c twice will generate index entries [(7, 8), (7, 9), (7, 10), (8, 9), (8, 10), (9, 10)]. These are what’s referred to as exploding indexes, and only occur in custom indexes that specify at least two instances of list properties in a given index.

    Unindexed list properties still take the same amount of space in the entity protocol buffer and still require the same time to serialize and deserialize that PB, but don’t have any of the index overhead.

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

Sidebar

Related Questions

I've not yet implemented push notifications in my app. My understanding is that the
A suffix array will index all the suffixes for a given list of strings,
My app has a DataGridView object and a List of type MousePos. MousePos is
My understanding of List vs IList and other collections is quite limited, so I
My understanding: Mercurial has three levels of config files: one shared by all users
I'm having a hard time understanding and therefore managing arrays and indexes manually in
Understanding that I should probably just dig into the source to come up with
Understanding the difference between throw ex and throw , why is the original StackTrace
My understanding of Hibernate is that as objects are loaded from the DB they
My understanding of the Git pack file format is something like: Where the table

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.