Do we still have any limitation on length of query params on GET operations. Earlier I think i used t be 255, which seems increased but i don't know whats that increased limitation.
The problem i am facing is I tried GET For endpoint like http://localhost:8080/data/ids=<5000 comma seaprated ids>, it fails
but same request with 500 ids like http://localhost:8080/data/ids=<500 comma seaprated ids> succeeds and so i doubt its length issue.
Please advise