Hi everyone Does anybody expert about proto datas...
# android
c
Hi everyone Does anybody expert about proto datastore? I would like to know about file size (if there is any limit) and if I might run into any trouble as application grows. I was thinking to store such data structure:
Copy code
message ResultsMessage {
  repeated string result= 1;
  int32 countSuccess = 2;
  int32 countFail = 3;
  int32 countTotal = 4;
result is a string that might reach 2k element (not really very long - max 30 chars) the purpose (just so someone might suggest different approach) • I need to store the result of a sequential commutation (keeping track of their numbers) • values have to survive on configuration change and app restart (that’s why i put “totalCount” • repeatable value get reset at each app starts (but on single execution of the app the might beat 2k or more values)
😶 2