question

Taran Saini avatar image
Taran Saini asked

For the player data, is it possible add additional tables so different types of data can be group separately?

We wanted to know if we could create multiple tables on the player data (title) to separate/group our data types.

Player DataTitle DataShared Group DatadataCharacter Data
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

·
Citrus Yan avatar image
Citrus Yan answered

So you want to add more player data key-value pairs, is that correct? If so, how many pairs are you currently using , and, did you encounter the “limit exceeded” error or something similar? In fact, we recommend storing player data into fewer, larger keys, which is far more efficient than plenty, smaller keys, you can store the values as JSON objects to hold more data types, for instance:

 "Keyname": {
	  "DataType1": {...},
	  "DataType2": {...},
   	  ...	
	 } 

BTW, may I know your title id?

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.