Putting await for async method call is mandatory in .net ?? For example, I have a redis set command that I don't want to wait for.
.....statements....
await redis.Hashes.Set(db, mainKey, value);
.....statements after set command......
I don't want to pause the execution of my method in set command. So I removed 'await'.
.....statements....
redis.Hashes.Set(db, mainKey, value);
....statements after set command......
Is this a good practice??