question

KyoungHeum Yeun avatar image
KyoungHeum Yeun asked

Can I use Azure Functions like this?

Existing method: Direct function call in Azure Functions in unity


My Method: Point to only one function of Azure Functions in the unity.
Find and execute the required function through the Function Parameter in that function.


Is there anything bad about making Azure Functions like My Method?
In this case, will the server cost more?

quest.png (52.4 KiB)
quest.png (54.8 KiB)
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
Rick Chen avatar image
Rick Chen answered

Yes, your method could cost more for the Azure Functions. The Azure functions are billed based on observed resource consumption measured in gigabyte seconds (GB-s). Comparing with the existing method, your method adds an additional classification layer to the function. It may consume a bit more resource and may increase the execution time. The additional cost will depend on the complexity of the classification layer. You could check the detail of the azure function pricing on https://azure.microsoft.com/en-us/pricing/details/functions/, and calculate the cost for yourself.

10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.