I am new to rest : I am creating a shopping cart like webservice where the user needs to authenticate and add items per user. How to implement this using Rest. What does it mean when they say "REST is stateless" Can I create a session in sqlserver database and return it in response so that client can use it their further call? Does it consider scalable?
I have seen posts on stateful rest service and they have answered saying scalability will be an issue. Also some posts suggest to store the information in database Managing state in RESTful based application But storing the value in database is also some sort of stateful since the client needs to be executed in order and pass some token for further calls. So can i conclude rest is not applicable for shopping cart like applications?