Promote performance knowledge from community to Microsoft layer (#50)

Pure git-mv relocation of all 7 performance articles from community/knowledge/performance/ to microsoft/knowledge/performance/. No content changes.

Co-authored-by: Jesper Schulz-Wedde <jesper.schulzwedde@microsoft.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Jesper Schulz-Wedde 2026-07-01 10:41:01 +02:00 committed by GitHub
parent 24e62f5ec8
commit 292bdabe27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,16 @@
codeunit 50100 "Event Audit Buffer"
{
SingleInstance = true;
// Unbounded global: every event fires adds an entry for the lifetime of the session.
var
AllEventIds: List of [Guid];
[EventSubscriber(ObjectType::Table, Database::"Sales Header", OnAfterInsertEvent, '', false, false)]
local procedure OnAfterInsertSalesHeader(var Rec: Record "Sales Header")
begin
// No cap. No eviction. No reset. A session that sees ten thousand inserts
// keeps ten thousand GUIDs in memory until the user signs out.
AllEventIds.Add(Rec.SystemId);
end;
}