web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Basic Information about Azure Function

Pradeep Rai Profile Picture Pradeep Rai 5,489 Moderator
It is a solution which helps us to write code in different languages such as C#, Java, JavaScript, Python and PowerShell without worrying about server.

For azure functions, we do not have to think about server, hosting, and maintenance. Everything was managed by Azure itself.
Let’s look at some of the key features of the Azure Functions:
  1. Support different programming languages - such as C#, Java, JavaScript, Python and PowerShell.

 
  1. Serverless computing – As everything managed inside Azure itself. Hence we do not have purchase any server.  we can fully concentrate on logic building.
  2. Pay-per use – You can pay azure consumption based on execution time.  
    For example, I have one Azure function and execution time is 5min then I only have to pay for 5min.
  3. Add dependencies – We can add different DLL as dependencies into our projects.
    For example – We have Visual Studio project in which we are using any third party library then this DLL we can load as dependencies.
  4. CI/CD – we can perform the CI/CD with help of Azure function.
     

Comments

*This post is locked for comments