Initial commit

This commit is contained in:
zhongjin
2020-06-15 10:58:47 +08:00
commit 4f1dfe7564
8590 changed files with 1516878 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
class CommonDataSingleton
include Singleton
def initialize
@common_data = nil
@last_usage = Time.now
end
def datasets(visualizations_api_url)
now = Time.now
if @common_data.nil? || (now - @last_usage > (cache_ttl * 60))
@common_data = CommonData.new(visualizations_api_url)
@last_usage = now
end
@common_data.datasets
end
def cache_ttl
ttl = 0
if Cartodb.config[:common_data].present?
ttl = Cartodb.config[:common_data]['cache_ttl'] || ttl
end
ttl
end
end