Welcome Guest. Sign in or Signup

2 Answers

State Record vs Temp Tables

Asked by: 5352 views Application Engine

In an App Engine, one can use State Record to achieve certain functionality while Temp Tables might be used for certain others. What are the differences between Temp Tables and State Records?

Related Questions

2 Answers



  1. indras on Apr 01, 2013 Reply

    A Sate record will have only one row. Temp table can have multiple rows.

    -6 Votes Thumb up 0 Votes Thumb down 0 Votes



    • nigam.abhishek on May 21, 2013 Reply

      state record is used to store and manipulate data that could be used across sections and programs.
      Temporary tables are used to support parallel processing of the app engine when more than one instance of the same program are running at the same time. different instance of the temporary tables are created and allocated to different ae programs.

      +14 Votes Thumb up 0 Votes Thumb down 0 Votes


Answer Question