Class SimplePhenomeCache

A simple phenome cache implementation.

This cache stores the constant phenome value for each genome.

Implements

Constructors

Properties

Methods

Constructors

Properties

cache: Map<number, PhenomeRow> = ...

Methods

  • Clears the cache, excluding the specified genome IDs.

    Parameters

    • excludeGenomeIds: number[]

      The IDs of the genomes to exclude from the clear operation.

    Returns void

  • Gets the phenome of a genome.

    Parameters

    • genomeId: number

      The ID of the genome.

    • OptionaldefaultValue: PhenomeRow

      The default value to return if the genome is not found.

    Returns undefined | PhenomeRow

    The phenome of the genome, or the default value if the genome phenome is not found.

  • Gets the phenome of a genome, or undefined if the genome is not ready.

    Parameters

    • genomeId: number

      The ID of the genome.

    Returns undefined | PhenomeRow

    The phenome of the genome, or undefined if the genome is not ready.