I use RestKit to interact with a REST api. For some of the actions, like HTTP PUT/POST/DELETE, I only care about the response status code (200, or 500 etc), and don't care about the response data, even though the API does send back data.
For performance consideration, is there a way to configure RestKit to avoid mapping the response? It seems that if I don't set up a response descriptor I am getting the error "no response descriptors match the response loaded"