결론)
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 버퍼를 활용한, 데이타 저장후 처리는 정상적으로 처리되어짐

+ Recent posts