ExcelKvPoC 빌드 실패: IStorageWrapper SetAsync(row,col) 미구현 #1
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
현상
dotnet build ExcelKvSystem.sln수행 시ExcelKvPoC프로젝트에서CS0535: 'GarnetClientAdapter'은(는) 'IStorageWrapper.SetAsync(string, string, int, int)' 인터페이스 멤버를 구현하지 않습니다오류로 빌드가 중단됩니다.재현 절차
dotnet restore ExcelKvSystem.slndotnet build ExcelKvSystem.slnExcelKvPoC/Program.cs:24에서 위 오류 발생추정 원인
IStorageWrapper에 traceability용SetAsync(string, string, int, int)오버로드가 추가되었으나GarnetClientAdapter가 구현하지 않아 인터페이스 계약을 만족하지 못합니다. (동일 파일 상단에는 using 중복으로 CS0105 경고도 다수 발생)요청 사항
GarnetClientAdapter에SetAsync(string, string, int, int)구현을 추가하고(메타데이터 저장 필요 여부 검토), 빌드가 통과하도록 수정