Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Type
/
to search
Sign in
Sign up
Appearance settings
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
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
microsoft
/
OpenAPI.NET
Public
Notifications
You must be signed in to change notification settings
Fork
281
Star
1.6k
Code
Issues
20
Pull requests
12
Discussions
Actions
Projects
Wiki
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
feat: Remove default collection initialization for perf reasons
- #2284
#2284
Merged
Vincent Biret (baywet)
merged 22 commits into
main
microsoft/OpenAPI.NET:main
from
feat/memory-perf-improvements
microsoft/OpenAPI.NET:feat/memory-perf-improvements
Copy head branch name to clipboard
Apr 9, 2025
Conversation
Commits
22
(22)
Checks
Files changed
Merged
feat: Remove default collection initialization for perf reasons
#2284
Vincent Biret (baywet)
merged 22 commits into
main
microsoft/OpenAPI.NET:main
from
feat/memory-perf-improvements
microsoft/OpenAPI.NET:feat/memory-perf-improvements
Copy head branch name to clipboard
Commits
Commits on Mar 24, 2025
feat: use lazy get for collection initialization to reduce resource allocation
Maggie Kimani (MaggieKimani1)
committed
e0f3773
View commit details
Copy full SHA for e0f3773
Browse repository at this point
Commits on Mar 25, 2025
chore: use Lazy<T> pattern; preserve null values
Maggie Kimani (MaggieKimani1)
committed
3b370e5
View commit details
Copy full SHA for 3b370e5
Browse repository at this point
chore: replicate for collections in other components
Maggie Kimani (MaggieKimani1)
committed
ef7a150
View commit details
Copy full SHA for ef7a150
Browse repository at this point
chore: remove unnecessary usings
Maggie Kimani (MaggieKimani1)
committed
205e6a1
View commit details
Copy full SHA for 205e6a1
Browse repository at this point
Commits on Mar 26, 2025
fix: revert lazy initialization; remove collection initialization
Maggie Kimani (MaggieKimani1)
committed
915e747
View commit details
Copy full SHA for 915e747
Browse repository at this point
chore: initialize collections to prevent NREs
Maggie Kimani (MaggieKimani1)
committed
0a65a54
View commit details
Copy full SHA for 0a65a54
Browse repository at this point
chore: fix failing tests
Maggie Kimani (MaggieKimani1)
committed
00e0913
View commit details
Copy full SHA for 00e0913
Browse repository at this point
chore: merge remote-tracking branch 'origin/feat/memory-perf-improvements' into feat/memory-perf-improvements
Maggie Kimani (MaggieKimani1)
committed
0921b0d
View commit details
Copy full SHA for 0921b0d
Browse repository at this point
chore: revert changes
Maggie Kimani (MaggieKimani1)
committed
796d49c
View commit details
Copy full SHA for 796d49c
Browse repository at this point
Commits on Apr 1, 2025
chore: merge main into current branch
Maggie Kimani (MaggieKimani1)
committed
08cc754
View commit details
Copy full SHA for 08cc754
Browse repository at this point
chore: remove default collection initialization across all models; clean up and fix tests
Maggie Kimani (MaggieKimani1)
committed
6fff3c5
View commit details
Copy full SHA for 6fff3c5
Browse repository at this point
Commits on Apr 2, 2025
chore: merge main into current branch
Maggie Kimani (MaggieKimani1)
committed
1fa4647
View commit details
Copy full SHA for 1fa4647
Browse repository at this point
Commits on Apr 3, 2025
chore: clean up code; initialize collections where applicable
Maggie Kimani (MaggieKimani1)
committed
4e97803
View commit details
Copy full SHA for 4e97803
Browse repository at this point
chore: more cleanup
Maggie Kimani (MaggieKimani1)
committed
eabd01d
View commit details
Copy full SHA for eabd01d
Browse repository at this point
chore: move assignment within the condition
Maggie Kimani (MaggieKimani1)
committed
c035940
View commit details
Copy full SHA for c035940
Browse repository at this point
Commits on Apr 6, 2025
chore: replace interface with concrete type
Maggie Kimani (MaggieKimani1)
committed
a28aa21
View commit details
Copy full SHA for a28aa21
Browse repository at this point
Commits on Apr 7, 2025
chore: simplify collection initialization
Maggie Kimani (MaggieKimani1)
committed
5686de4
View commit details
Copy full SHA for 5686de4
Browse repository at this point
Update src/Microsoft.OpenApi/Models/OpenApiPathItem.cs
Show description for ccfeab1
Maggie Kimani (MaggieKimani1)
and
Vincent Biret (baywet)
authored
ccfeab1
View commit details
Copy full SHA for ccfeab1
Browse repository at this point
chore: implement PR feedback
Maggie Kimani (MaggieKimani1)
committed
ad46bdb
View commit details
Copy full SHA for ad46bdb
Browse repository at this point
chore: pull changes in remote branch
Maggie Kimani (MaggieKimani1)
committed
d12efaf
View commit details
Copy full SHA for d12efaf
Browse repository at this point
Commits on Apr 8, 2025
chore: reverts casing change
Vincent Biret (baywet)
committed
cb879e3
View commit details
Copy full SHA for cb879e3
Browse repository at this point
Merge branch 'main' into feat/memory-perf-improvements
Vincent Biret (baywet)
authored
e8dc71e
View commit details
Copy full SHA for e8dc71e
Browse repository at this point
You can’t perform that action at this time.