dplummer/cachext

View on GitHub

Showing 4 of 4 total issues

Method with_heartbeat_extender has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

      def with_heartbeat_extender lock_key, heartbeat_expires, &block
        done = false
        heartbeat_frequency = heartbeat_expires / 2

        Thread.new do
Severity: Minor
Found in lib/cachext/features/lock.rb - About 55 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method with_heartbeat_extender has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

      def with_heartbeat_extender lock_key, &block
        done = false
        heartbeat_frequency = heartbeat_expires / 2

        Thread.new do
Severity: Minor
Found in lib/cachext/multi.rb - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method obtain_lock has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

      def obtain_lock key, options
        start_time = Time.now

        until lock_info ||= @config.lock_manager.lock(key.lock_key, (options.heartbeat_expires * 1000).ceil)
          if wait_for_lock(key, start_time) == :timeout
Severity: Minor
Found in lib/cachext/features/lock.rb - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method uncached_where has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

      def uncached_where ids
        with_heartbeat_extender lock_key_from_ids(ids) do
          records = @lookup.call ids

          if records.is_a?(Array)
Severity: Minor
Found in lib/cachext/multi.rb - About 25 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Severity
Category
Status
Source
Language