Skip to content

Commit

Permalink
feature: aws lambda detailed
Browse files Browse the repository at this point in the history
  • Loading branch information
Hasan Ozdemir committed Apr 25, 2024
1 parent 3409f03 commit fb664f6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/amazon_web_services.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,18 @@ Simple Queue Service is also known as SQS. It is distributed queuing service whi

### 9. What is AWS Lambda?
Lambda is an Amazon compute service which allows you to run code in the AWS Cloud without managing servers.
* Provisioned concurrency allows you to preallocate resources for your Lambda functions, reducing cold starts and ensuring consistent performance.
* Implementing multi-threaded execution in Lambda functions enhances parallel processing and overall performance
*

### 10. What is geo-targeting in CloudFront?
Geo-Targeting is a concept where businesses can show personalized content to their audience based on their geographic location without changing the URL. This helps you create customized content for the audience of a specific geographical area, keeping their needs in the forefront.
Geo-Targeting is a concept where businesses can show personalized content to their audience based on their geographic location without changing the URL. This helps you create customized content for the audience of a specific geographical area, keeping their needs in the forefront.

### 11. What is Lambda Event-Driven Execution ?
Lambda can response to predefined triggers or events. Whether it’s an HTTP request, database modification, or file upload, Lambda can respond to all the events and process it accordingly.

### 12.What is layering in the context of AWS lambdas?

Lambda Layers in AWS Lambda is a feature that allows us to easily manage and share common components across multiple Lambda functions.

![lambda layer](img/aws/lambda_layer.png)
Binary file added docs/img/aws/lambda_layer.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fb664f6

Please sign in to comment.