Reputation: 1075
This is question is slightly different than this question, but related. I have AWS API gateway setup with a single GET
method, which has 1 query parameter search
. This GET
call returns a list of words based on the search string. I have turned on caching by this query parameter, but get the same results, no matter the query parameter. When I turn caching off, it works as expected.
search=a*
=> words that start with a
are returned, as expectedsearch=b*
=> words that start with a
are returned, but I expect words that start with b
.Why aren't my requests being cached by the query parameter?
Upvotes: 0
Views: 1318