You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/scenario-guidance/Performance.md
+18-17Lines changed: 18 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
---
2
2
title: Performance
3
-
ms.date: 04/21/2020
3
+
description: Outlines how performance is one of the important factors that influence user-experience and how efficiently users can work with the portal.
4
+
ms.date: 06/07/2022
4
5
ms.localizationpriority: medium
5
6
---
6
7
# Performance
@@ -24,8 +25,8 @@ SharePoint Online uses throttling to prevent users from over-consuming resources
24
25
25
26
### Articles
26
27
27
-
-[Handle SharePoint Online throttling by using exponential back off](https://docs.microsoft.com/sharepoint/dev/solution-guidance/handle-sharepoint-online-throttling-by-using-exponential-back-off)
28
-
-[Avoid getting throttled or blocked in SharePoint Online](https://docs.microsoft.com/sharepoint/dev/general-development/how-to-avoid-getting-throttled-or-blocked-in-sharepoint-online)
28
+
-[Handle SharePoint Online throttling by using exponential back off](/sharepoint/dev/solution-guidance/handle-sharepoint-online-throttling-by-using-exponential-back-off)
29
+
-[Avoid getting throttled or blocked in SharePoint Online](/sharepoint/dev/general-development/how-to-avoid-getting-throttled-or-blocked-in-sharepoint-online)
-[Use existing JavaScript libraries in SharePoint Framework client-side web parts](https://docs.microsoft.com/sharepoint/dev/spfx/web-parts/guidance/use-existing-javascript-libraries)
45
-
-[Use the Office 365 content delivery network (CDN)](https://docs.microsoft.com/sharepoint/dev/general-development/office-365-cdn)
41
+
-[Optimize builds for production](/sharepoint/dev/spfx/toolchain/optimize-builds-for-production)
42
+
-[JavaScript Patterns and Performance](/sharepoint/dev/solution-guidance/javascript-patterns-and-performance)
43
+
-[Make batch requests with the REST APIs](/sharepoint/dev/sp-add-ins/make-batch-requests-with-the-rest-apis)
-[Use existing JavaScript libraries in SharePoint Framework client-side web parts](/sharepoint/dev/spfx/web-parts/guidance/use-existing-javascript-libraries)
46
+
-[Use the Office 365 content delivery network (CDN)](/sharepoint/dev/general-development/office-365-cdn)
46
47
47
48
## SharePoint Add-ins
48
49
@@ -52,10 +53,10 @@ The approaches you take to ensure optimal performance with SharePoint is differe
52
53
53
54
### Articles
54
55
55
-
-[JavaScript Patterns and Performance](https://docs.microsoft.com/sharepoint/dev/solution-guidance/javascript-patterns-and-performance)
56
-
-[Performance considerations in the SharePoint Add-in model](https://docs.microsoft.com/sharepoint/dev/solution-guidance/performance-considerations-sharepoint-add-in)
57
-
-[Improve performance in SharePoint provider-hosted add-ins](https://docs.microsoft.com/sharepoint/dev/solution-guidance/improve-performance-in-sharepoint-provider-hosted-add-ins)
58
-
-[Make batch requests with the REST APIs](https://docs.microsoft.com/sharepoint/dev/sp-add-ins/make-batch-requests-with-the-rest-apis)
56
+
-[JavaScript Patterns and Performance](/sharepoint/dev/solution-guidance/javascript-patterns-and-performance)
57
+
-[Performance considerations in the SharePoint Add-in model](/sharepoint/dev/solution-guidance/performance-considerations-sharepoint-add-in)
58
+
-[Improve performance in SharePoint provider-hosted add-ins](/sharepoint/dev/solution-guidance/improve-performance-in-sharepoint-provider-hosted-add-ins)
59
+
-[Make batch requests with the REST APIs](/sharepoint/dev/sp-add-ins/make-batch-requests-with-the-rest-apis)
The Remote Event Receivers are a capability introduced with the SharePoint Add-In model, and they target both SharePoint on-premises 2013/2016 and SharePoint Online. The idea is to have a SOAP endpoint, usually implemented using Windows Communication Foundation (WCF), which can be invoked by SharePoint upon the happening of events. The Remote Event Receivers provide both -ing events, which are notified while something is happening, and -ed events, which are notified after something already happened. As such, a Remote Event Receiver can even cancel an event that is happening. The family of events that can be tracked are related to lists, items, sites, permissions, and many others. Here follows a list of topics that you can inspect to dig into the Remote Event Receivers.
52
52
53
53
### Articles
54
-
*[Create a remote event receiver in SharePoint Add-ins](https://docs.microsoft.com/sharepoint/dev/sp-add-ins/create-a-remote-event-receiver-in-sharepoint-add-ins)
55
-
*[Use remote event receivers in SharePoint](https://docs.microsoft.com/sharepoint/dev/solution-guidance/use-remote-event-receivers-in-sharepoint)
56
-
*[Event receivers and list event receivers in the SharePoint Add-in model](https://docs.microsoft.com/sharepoint/dev/solution-guidance/event-receiver-and-list-event-receiver-sharepoint-add-in)
57
-
*[Handle events in SharePoint Add-ins](https://docs.microsoft.com/sharepoint/dev/sp-add-ins/handle-events-in-sharepoint-add-ins)
58
-
*[Debug and troubleshoot a remote event receiver in a SharePoint Add-in](https://docs.microsoft.com/sharepoint/dev/sp-add-ins/debug-and-troubleshoot-a-remote-event-receiver-in-a-sharepoint-add-in)
*[Create a remote event receiver in SharePoint Add-ins](/sharepoint/dev/sp-add-ins/create-a-remote-event-receiver-in-sharepoint-add-ins)
55
+
*[Use remote event receivers in SharePoint](/sharepoint/dev/solution-guidance/use-remote-event-receivers-in-sharepoint)
56
+
*[Event receivers and list event receivers in the SharePoint Add-in model](/sharepoint/dev/solution-guidance/event-receiver-and-list-event-receiver-sharepoint-add-in)
57
+
*[Handle events in SharePoint Add-ins](/sharepoint/dev/sp-add-ins/handle-events-in-sharepoint-add-ins)
58
+
*[Debug and troubleshoot a remote event receiver in a SharePoint Add-in](/sharepoint/dev/sp-add-ins/debug-and-troubleshoot-a-remote-event-receiver-in-a-sharepoint-add-in)
*[SharePoint List Item Change Monitor](https://github.com/SharePoint/PnP/tree/master/Samples/Core.ListItemChangeMonitor)
@@ -94,9 +94,9 @@ Another option that you have are the workflows for SharePoint 2013/2016, which a
94
94
One third and last option is using Microsoft Flow, which - at the time of this writing - is a cloud-only flow definition and management tool. It is really powerful whenever you need to process events with custom user's defined processes, where the key business users self-design their processes.
95
95
96
96
### Articles
97
-
*[Workflows in SharePoint](https://docs.microsoft.com/sharepoint/dev/general-development/workflows-in-sharepoint)
98
-
*[Workflows, actions (activities), events, and forms in the SharePoint Add-in model](https://docs.microsoft.com/sharepoint/dev/solution-guidance/workflows-actions-events-and-forms-sharepoint-add-in)
99
-
*[Call web services from SharePoint workflows](https://docs.microsoft.com/sharepoint/dev/solution-guidance/call-web-services-from-sharepoint-workflows)
97
+
*[Workflows in SharePoint](/sharepoint/dev/general-development/workflows-in-sharepoint)
98
+
*[Workflows, actions (activities), events, and forms in the SharePoint Add-in model](/sharepoint/dev/solution-guidance/workflows-actions-events-and-forms-sharepoint-add-in)
99
+
*[Call web services from SharePoint workflows](/sharepoint/dev/solution-guidance/call-web-services-from-sharepoint-workflows)
100
100
*[Introducing Microsoft Flow integration for SharePoint Document Libraries](https://flow.microsoft.com/blog/flow-in-spo-document-libraries/)
0 commit comments