my model is:

class jUser( db.Model ):
    '''用户存储结构'''
    UserID = db.StringProperty()
    UserName = db.StringProperty()
    UserEmail = db.StringProperty()
    UserPassword = db.StringProperty()
    lockuser = db.StringProperty()
    UserQuesion = db.StringProperty()
    UserAnswer = db.StringProperty()
    JoinDate = db.DateTimeProperty()
    lastlogin = db.DateTimeProperty()
    UserData = db.StringListProperty()  #with 8 short strings in

I created about 4000 entities, and they take me 10M bytes. 2.5K for
every entity? why so large?

in access mdb file, the records with same data take less than 2M.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
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