Azure Functions Flashcards
1
Q
What kind of things can trigger Azure Functions?
A
- Time
- Data
- Webhooks
2
Q
What is Azure Functions built on top of?
A
- The Web Applications Web Jobs SDK
3
Q
What is serverless?
A
- There are still servers (of course)
- You are delegating management of servers
4
Q
How can you share code between functions?
A
- create NuGet package and have functions reference
- create a shared folder in Functions App and use #load to load shared files into functions
5
Q
How do you script referencing a library?
A
- # r
- example: #r “SendGrid”
- SendGrid is a built in option
- then use using statements
6
Q
How do you get Functions to automatically refresh when changing shared code?
A
- Add a watchDirectors config setting