MS 사의 UWP 와 WPF의 차이점

2024년 03월 29일 golgol 0

MS(마이크로소프트)의 UWP(Universal Windows Platform)와 WPF(Windows Presentation Foundation)는 둘 다 윈도우 애플리케이션 개발을 위한 프레임워크이지만, 목적과 기능 면에서 차이점을 가지고 있습니다. 결론적으로, UWP는 모던한 윈도우 플랫폼에 […]

NetCore6.0 Memory Cache (MySQL, MsSQL)

2024년 03월 19일 golgol 0

Remark : ICacheGetSet 으로 간단하게 구성 하기 UML Files MsSQL -> AirlineDBContext.cs MySQL -> AirlineDBContext.cs AirlineController.cs AirlineHttpClient.cs CacheProvider.cs Airline.cs CacheGetSet.cs Program.cs

Regex 문자 제외 로직

2024년 02월 29일 golgol 0

REPUBLIC OF”를 제외하고 “OF”가 포함된 줄을 찾기 위한 정규 표현식을 작성할 때, Lookahead와 Lookbehind 같은 정규 표현식의 고급 기능을 사용할 수 있습니다. 이러한 기능을 활용하여 […]

NetCore6.0 Memory Cache (MSSQL DB)

2024년 02월 29일 golgol 0

Overview : MSSQL DB 데이타 캐싱 하기 1. MySQL 2. MSSQL Data UML 솔루션 파일들 AirlineController AirlineDBContext AirlineHttpClient CacheProvider Models -> Airline CachedCodeService CacheService CodeService […]

NetCore6.0 Memory Cache (MySQL DB)

2024년 02월 29일 golgol 0

Overview : MySQL DB 데이타 캐싱 하기 1. MSSql Data 2. MySQL Data UML 솔루션 파일들 AirlineController AirlineDBContext AirlineHttpClient CacheProvider Models -> Airline CachedCodeService CacheService […]

NetCore6.0 Memory Cache simple

2024년 02월 27일 golgol 0

1. 필요한 패키지 설치 2. 메모리 캐시 사용하기 .NET Core에서 메모리 캐시를 사용하기 위해 IMemoryCache 인터페이스를 활용합니다. 이 인터페이스를 사용하려면 먼저 서비스 컨테이너에 등록해야 합니다. […]

NetCore6.0 Memory Cache (Web XML Data)

2024년 02월 06일 golgol 0

1. Memory Cache Simple sample 2. Memory Cache Interface sample (web XML Data) Web XML Data UML Program Files AirlineController AirlineHttpClient CacheProvider Models->Airlines CachedCodeService CacheService […]