Hacker News new | ask | show | jobs
Ask HN: Serverless platforms with stateful functions
2 points by narendraj9 2712 days ago
Are there any serverless platforms that give the abstraction of a function that maintains its state without interacting with an external service.

Something like:

f(current_state, request) --> (new_state, response)

where the state is persisted across requests by the serverless platform transparently.