Conversation
캐시 초기화 시 BattleTxTracker Redis 캐시도 함께 삭제되도록 추가. 기존에는 ranking과 season 캐시만 삭제되었으나, block_tracker:battle_tx_tracker:last_processed_block 키도 초기화에 포함. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- 상단 바 좌측에 BattleTxTracker 현재 블록 높이를 8초마다 자동 갱신하여 표시 - BlockTrackerStatus.razor: PeriodicTimer + CancellationToken으로 안전한 폴링 구현, 값 변경 시에만 StateHasChanged 호출하여 불필요한 re-render 방지 - CacheInitializationService: 캐시 삭제 3개를 Task.WhenAll로 병렬 실행 - Program.cs: IBlockTrackerRepository 등록 추가 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
block_tracker:battle_tx_tracker:last_processed_block)도 함께 삭제되도록 추가IBlockTrackerRepository에DeleteBattleTxTrackerBlockIndexAsync()메서드 추가Task.WhenAll로 병렬 실행하여 초기화 속도 개선CacheInitializationService유닛 테스트 추가Test plan
block_tracker:battle_tx_tracker:last_processed_block키 삭제 확인dotnet test전체 통과 확인🤖 Generated with Claude Code