lib/legion/data.rb in legion-data-1.1.5 vs lib/legion/data.rb in legion-data-1.2.0

- old
+ new

@@ -37,21 +37,20 @@ def setup_cache return if Legion::Settings[:data][:cache][:enabled] return unless defined?(::Legion::Cache) - Legion::Data::Model::Relationship.plugin :caching, Legion::Cache, ttl: 10 - Legion::Data::Model::Runner.plugin :caching, Legion::Cache, ttl: 60 - Legion::Data::Model::Chain.plugin :caching, Legion::Cache, ttl: 60 - Legion::Data::Model::Datacenter.plugin :caching, Legion::Cache, ttl: 120 - Legion::Data::Model::Function.plugin :caching, Legion::Cache, ttl: 120 - Legion::Data::Model::Extension.plugin :caching, Legion::Cache, ttl: 120 - Legion::Data::Model::Node.plugin :caching, Legion::Cache, ttl: 10 - Legion::Data::Model::TaskLog.plugin :caching, Legion::Cache, ttl: 12 - Legion::Data::Model::Task.plugin :caching, Legion::Cache, ttl: 10 - Legion::Data::Model::User.plugin :caching, Legion::Cache, ttl: 120 - Legion::Data::Model::Group.plugin :caching, Legion::Cache, ttl: 120 - Legion::Logging.info 'Legion::Data connected to Legion::Cache' + # Legion::Data::Model::Relationship.plugin :caching, Legion::Cache, ttl: 10 + # Legion::Data::Model::Runner.plugin :caching, Legion::Cache, ttl: 60 + # Legion::Data::Model::Chain.plugin :caching, Legion::Cache, ttl: 60 + # Legion::Data::Model::Function.plugin :caching, Legion::Cache, ttl: 120 + # Legion::Data::Model::Extension.plugin :caching, Legion::Cache, ttl: 120 + # Legion::Data::Model::Node.plugin :caching, Legion::Cache, ttl: 10 + # Legion::Data::Model::TaskLog.plugin :caching, Legion::Cache, ttl: 12 + # Legion::Data::Model::Task.plugin :caching, Legion::Cache, ttl: 10 + # Legion::Data::Model::User.plugin :caching, Legion::Cache, ttl: 120 + # Legion::Data::Model::Group.plugin :caching, Legion::Cache, ttl: 120 + # Legion::Logging.info 'Legion::Data connected to Legion::Cache' end def shutdown Legion::Data::Connection.shutdown end