Skip to content

Commit 96ebd85

Browse files
committed
add azure functions basic page
1 parent 4506696 commit 96ebd85

File tree

4 files changed

+46
-16
lines changed

4 files changed

+46
-16
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
title: Azure Functions
2+
category: page
3+
slug: azure-functions
4+
sortorder: 0540
5+
toc: False
6+
sidebartitle: Azure Functions
7+
meta: Azure Functions is a serverless compute service that can execute Python 3.6 code.
8+
9+
10+
# Azure Functions
11+
[Azure Functions](https://docs.microsoft.com/en-us/azure/azure-functions/)
12+
is a compute service created by Microsoft that can execute Python code in
13+
response to pre-defined events, such as API calls or database transactions
14+
in other Azure services.
15+
16+
<a href="https://docs.microsoft.com/en-us/azure/azure-functions/" style="border:none"><img src="/img/logos/azure.png" width="100%" alt="Microsoft Azure logo." class="shot"></a>
17+
18+
<div class="well see-also">Azure Functions is an implementation of the <a href="/serverless.html">serverless</a> concept. Learn how these pieces fit together in the <a href="/deployment.html">deployment</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
19+
20+
21+
### Azure Functions resources
22+
* [An introduction to Azure Functions](https://docs.microsoft.com/en-us/azure/azure-functions/functions-overview)
23+
is the official quickstart guide by Microsoft and has some good high-level
24+
information on their platform's services as well.
25+
26+
* [Azure Functions vs AWS Lambda – Scaling Face Off](https://www.azurefromthetrenches.com/azure-functions-vs-aws-lambda-scaling-face-off/)
27+
contains metrics from comparing AWS Lambda with Azure Functions in
28+
response time, user load, requests per second and error rate
29+
over various periods of time.
30+

static/img/logos/azure.png

49.6 KB
Loading
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<h3>What do you want to learn about next?</h3>
22
<div class="row">
3-
<div class="c4">
4-
<div class="well select-next">
5-
{% include "choices/buttons/web-frameworks.html" %}
6-
</div>
7-
</div>
8-
<div class="c4">
9-
<div class="well select-next">
10-
{% include "choices/buttons/docker.html" %}
11-
</div>
12-
</div>
13-
<div class="c4">
14-
<div class="well select-next">
15-
{% include "choices/buttons/databases.html" %}
16-
</div>
17-
</div>
3+
<div class="c4">
4+
<div class="well select-next">
5+
{% include "choices/buttons/web-frameworks.html" %}
6+
</div>
7+
</div>
8+
<div class="c4">
9+
<div class="well select-next">
10+
{% include "choices/buttons/docker.html" %}
11+
</div>
12+
</div>
13+
<div class="c4">
14+
<div class="well select-next">
15+
{% include "choices/buttons/databases.html" %}
16+
</div>
17+
</div>
1818
</div>

theme/templates/table-of-contents.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ <h4>5.9 <a href="/containers.html">Containers</a></h4>
183183
<div class="tc"><a href="/kubernetes.html">Kubernetes</a></div>
184184
<h4>5.10 <a href="/serverless.html">Serverless Architectures</a></h4>
185185
<div class="tc tds"><a href="/aws-lambda.html">AWS Lambda</a></div>
186-
<div class="tc tds sn">Azure Functions</div>
186+
<div class="tc tds"><a href="/azure-functions.html">Azure Functions</a></div>
187187
<div class="tc tds"><a href="/google-cloud-functions.html">Google Cloud Functions</a></div>
188188

189189
<h3>6. <a href="/devops.html">DevOps</a></h3>

0 commit comments

Comments
 (0)