Closed Scogun closed 10 months ago
Right now, during a cache key building, query parameters are ordering. However, if a parameter is the list one - its values must be ordering too.
For requests /get?ids=1,2 and /get?ids=2,1 should be built the same key.
/get?ids=1,2
/get?ids=2,1
Current situation
Right now, during a cache key building, query parameters are ordering. However, if a parameter is the list one - its values must be ordering too.
Expected result
For requests
/get?ids=1,2
and/get?ids=2,1
should be built the same key.