question

alexandrepepun avatar image
alexandrepepun asked

How many letters in maximum in a Player tittle data?

I would like to register a very big text in a tittle data for each Player, so i wonder how many letters can we use in maximum

10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
Hernando avatar image
Hernando answered

You can find all the related limit in the page [GameManager]->[Setting]->[Limits]. For the limit you need, its the name is Player data value size, and the Essentials tier is 10000bytes.

Player data value size contains all the data for a single player, including UserData, UserInternalData, UserPublisherData, and UserPublisherInternalData. And, the thing to bear in mind is that the KVP data is not 8 bit strings - you should calculate each character as a 16 bit value.

In addition, You can refer to the comment of Brendan in this thread(https://community.playfab.com/questions/16173/example-datamodel-for-storing-entity-states-for-ex.html), that will be a good suggestion for your scenario:

"The limits are a hard limit on the total number of characters in the string which is the value. So each KVP which has up to N characters in it, where N is your limit. It's also worth noting that it's a good idea to use fewer, larger KVPs, rather than a lot of little ones."

10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.