Product Overview
Benefits
Use Cases
Architecture
Regions
{player_id:11474,player_name: "Test account 2",gender:0,ethnicity:"Elf",FightingPower:10,equipment:{helmet:0,Warframe:0,gloves:0,necklace:0,pants:0,Shoes:0},horse:"0"},{player_id:11475,player_name: "Test account 1",gender:1,ethnicity:"Orc",FightingPower:1477,equipment:{helmet:1478,Warframe:21,gloves:554,necklace:12,pants:64,Shoes:122},horse:"3"}
player_name and ethnicity.player_id and player_name. TcaplusDB supports up to 4 primary key fields.equipment and FightingPower. TcaplusDB supports up to 128 general fields.Field Type | Description |
int32 | Variable-length signed integer that can represent a value between -2^31 and +2^31. It is relatively inefficient to represent a negative number. |
int64 | Variable-length signed integer that can represent a value between -2^63 and +2^63. |
uint32 | Variable-length unsigned integer that can represent a value between 0 and 2^32. |
uint64 | Variable-length unsigned integer that can represent a value between 0 and 2^64. |
sint32 | Variable-length signed int value which is more efficient to represent a negative number than regular int32. |
sint64 | Variable-length signed int value which is more efficient to represent a negative number than regular int64. |
bool | Boolean value representing True or False. |
fixed32 | Fixed-length numeric type always taking 4 bytes. It is more efficient than uint32 if the value is generally above 2^28. |
fixed64 | Fixed-length numeric type always taking 8 bytes. It is more efficient than uint64 if the value is generally above 2^56. |
sfixed32 | Fixed-length numeric type always taking 4 bytes. |
sfixed64 | Fixed-length numeric type always taking 8 bytes. |
float | 32-bit binary floating point taking 4 bytes. |
double | 64-bit binary double-precision floating point taking 8 bytes. |
strings | String encoded with UTF-8 or 7-bit ASCII that cannot exceed 2^32 in length. |
bytes | Byte sequence of a length below 2^32. |
message | Nested type. It supports up to 128 consecutive nesting levels. A high number of nesting levels will affect the performance. |
フィードバック