What is the cheapest/simpler way to persist?

Hello,

I’d like to know what is the cheapest and simpler way to persist?

I’m using one recurring job that triggers once a day.
It’s a very simple solution running on a container with .net core and asp.net webapi on AWS.

I don’t want to use memory storage.

Thanks

PostgreSQL is an Sql-like database and is open source.

You can use this database in conjunction to Hangfire.PostgreSql to have persisting into a database instead of in memory.

What you could do is run a container of postgres alongside with your application container and do the persisting into it.