결론)
REAL Version을 사용하지 않아도 REDIS 버퍼를 활용한, 데이타 저장후 처리는 정상적으로 처리되어짐
TRIAL Version 사용시)
2023-10-28 오전 07:44 553,984 ServiceStack.dll
2023-10-28 오전 07:44 33,792 ServiceStack.Interfaces.dll
2023-10-28 오전 07:44 20,480 ServiceStack.ServiceInterface.dll
Exception 발생경우)
정상적인 Insert로직 실행
Exception발생하지 않는 경우는) REDIS로 전송
[2025-01-21 10:22:46]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:22:47]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:22:47]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:22:48]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:22:48]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:22:48]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:22:49]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:22:49]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:22:50]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:22:50]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:23:31]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. [2025-01-21 10:24:01]>(MultipleRedisManager)(SendQuery)(JsonConvert.SerializeObject)(Exception):The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license or visit https://github.com/ServiceStackV3/ServiceStackV3 to revert back to the free ServiceStack v3. |
try { sendRealRedis.AddItemToList("REAL", ____query); } catch (InvalidOperationException ex) { return (null); //정상적인 Insert로직 실행하도록 NULL리턴 } catch (Exception ex) { return (null); //정상적인 Insert로직 실행하도록 NULL리턴 } |
결론)
REAL Version을 사용하지 않아도 REDIS 버퍼를 활용한, 데이타 저장후 처리는 정상적으로 처리되어짐
'REDIS' 카테고리의 다른 글
작업을 순차적으로 처리하는 큐가 필요할 때(데이타원본대로) (0) | 2025.03.21 |
---|---|
Redis는 문자열 기반 저장소이기 때문에, byte[] 데이터를 저장하려면 적절히 직렬화(serialize)하거나 Base64 인코딩을 적용해야 합니다. (0) | 2025.01.16 |
ServiceStack.dll/ServiceStack.Interfaces.dll/ServiceStack.ServiceInterface.dll (0) | 2025.01.14 |
Redis(Message Queue)를 사용하면, 데이터의 안정적인 처리와 비동기적인 작업 분배가 가능합니다. (0) | 2025.01.13 |
ServiceStack.Redis 요청 제한(사용판사용할 경우) (0) | 2025.01.12 |