from Hacker News

Serialising ASP.NET method calls for later execution

by johnny_reilly on 5/16/24, 12:20 PM with 2 comments

  • by bunbun69 on 5/16/24, 2:16 PM

    > So how can we take a method call, serialise it, perhaps store it in a database, and then later rehydrate and execute?

    Any messaging queue would be better. Yes it's easy to setup. No it doesn't require additional complexity (in fact, it's less complex than the proposed solution)

    example: https://www.rabbitmq.com/tutorials/tutorial-one-dotnet#recei...