-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
Description
Data is overwritten each time a user submits data - this can be improved but is hard. Currently user data is stored inside the enclave as a Rust HashMap indexed by the userId as its key, and the array of locations as its associated data. so everytime a new dataset is added to HashMap overwrites whatever prior entry was there for that key. Improving on this is hard because one would need to find data overlaps in terms of space and time with prior entries and do a proper merge.