lib/legion/data.rb in legion-data-java-1.1.2 vs lib/legion/data.rb in legion-data-java-1.1.3

- old
+ new

@@ -38,19 +38,20 @@ 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::Extension.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' end def shutdown Legion::Data::Connection.shutdown end