outcaste-io / issues

File issues here across all public Outcaste Repositories
Apache License 2.0
6 stars 0 forks source link

Arrays are stored as Sets #20

Open Schartey opened 2 years ago

Schartey commented 2 years ago

Arrays in Outserv work as a Set. If you have two identical values in key value pairs and didn’t care about order, it might still produce the wrong results as

["my value","my value","1"]

would only get stored as

["my value","1"]

This should be fixed to comply with the spec, which says that these should be arrays and not sets.

Disclaimer: Example taken by amaster507 (Anthony Master)