@@ -48,7 +48,8 @@ if CACHING_ENABLED then
48
48
end
49
49
50
50
51
- local REDIS_RETRY_COUNT = os.getenv (' REDIS_RETRY_COUNT' ) or 4
51
+ local REDIS_RETRY_COUNT = os.getenv (' REDIS_RETRY_COUNT' )
52
+ REDIS_RETRY_COUNT = REDIS_RETRY_COUNT == nil and 3 or tonumber (REDIS_RETRY_COUNT )
52
53
local REDIS_FIELD = " resources"
53
54
54
55
local _M = {}
@@ -656,7 +657,7 @@ function exists(red, key, snapshotId)
656
657
if red == nil then
657
658
red = _M .init ()
658
659
end
659
- return red : exists ( key ), red
660
+ return call ( red . exists , { red , key } ), red
660
661
end
661
662
end
662
663
@@ -677,7 +678,7 @@ function get(red, key)
677
678
if red == nil then
678
679
red = _M .init ()
679
680
end
680
- return red : get ( key )
681
+ return call ( red . get , { red , key } )
681
682
end
682
683
end
683
684
@@ -711,12 +712,12 @@ function hget(red, key, id)
711
712
if red == nil then
712
713
red = _M .init ()
713
714
end
714
- return red : hget ( key , id ), red
715
+ return call ( red . hget , { red , key , id } ), red
715
716
end
716
717
end
717
718
718
719
function hgetall (red , key )
719
- return red : hgetall ( key )
720
+ return call ( red . hgetall , { red , key } )
720
721
end
721
722
722
723
function hset (red , key , id , value )
@@ -732,7 +733,7 @@ function hset(red, key, id, value)
732
733
c :set (key , val , CACHE_TTL )
733
734
end
734
735
end
735
- return red : hset ( key , id , value )
736
+ return call ( red . hset , { red , key , id , value } )
736
737
end
737
738
738
739
function expire (red , key , ttl )
@@ -744,14 +745,14 @@ function expire(red, key, ttl)
744
745
end
745
746
c :set (key , value , ttl )
746
747
end
747
- return red : expire ( key , ttl )
748
+ return call ( red . expire , { red , ttl } )
748
749
end
749
750
750
751
function del (red , key )
751
752
if CACHING_ENABLED then
752
753
c :delete (key )
753
754
end
754
- return red : del ( key )
755
+ return call ( red . del , { red , key } )
755
756
end
756
757
757
758
function hdel (red , key , id )
@@ -762,25 +763,37 @@ function hdel(red, key, id)
762
763
c :set (key , cachecontents , CACHE_TTL )
763
764
end
764
765
end
765
- return red : hdel ( key , id )
766
+ return call ( red . hdel , { red , key , id } )
766
767
end
767
768
768
769
function set (red , key , value )
769
- return red : set ( key , value )
770
+ return call ( red . set , { red , key , value } )
770
771
end
771
772
772
773
function smembers (red , key )
773
- return red : smembers ( key )
774
+ return call ( red . smembers , { red , key } )
774
775
end
775
776
776
777
function srem (red , key , id )
777
- return red : srem ( key , id )
778
+ return call ( red . srem , { red , key , id } )
778
779
end
779
780
780
781
function sadd (red , key , id )
781
- return red : sadd ( key , id )
782
+ return call ( red . sadd , { red , key , id } )
782
783
end
783
784
785
+ --- Call function with retry logic
786
+ -- @param func function to call
787
+ -- @param args arguments to pass in to function
788
+ function call (func , args )
789
+ local res , err = func (unpack (args ))
790
+ local retryCount = REDIS_RETRY_COUNT
791
+ while not res and retryCount > 0 do
792
+ res , err = func (unpack (args ))
793
+ retryCount = retryCount - 1
794
+ end
795
+ return res , err
796
+ end
784
797
785
798
_M .get = get
786
799
_M .set = set
0 commit comments