Module: Familia::Horreum::ManagementMethods

Includes:
AuditMethods, RelatedFieldsManagement, RepairMethods
Defined in:
lib/familia/horreum/management.rb

Overview

ManagementMethods - Class-level methods for Horreum model management

This module is extended into classes that include Familia::Horreum, providing class methods for database operations and object management (e.g., Customer.create, Customer.find_by_id)

Key features:

  • Includes RelatedFieldsManagement for DataType field handling
  • Includes AuditMethods for proactive consistency detection
  • Includes RepairMethods for repair and rebuild operations
  • Provides utility methods for working with Database objects

Instance Method Summary collapse

Methods included from RepairMethods

#rebuild_instances, #repair_all!, #repair_indexes!, #repair_instances!, #repair_multi_indexes!, #repair_participations!, #repair_related_fields!, #scan_keys

Methods included from AuditMethods

#audit_cross_references, #audit_instances, #audit_multi_indexes, #audit_participations, #audit_related_fields, #audit_unique_indexes, #health_check

Methods included from RelatedFieldsManagement

#attach_class_related_field, #attach_instance_related_field

Instance Method Details

#all(suffix = nil) ⇒ Object



696
697
698
699
700
# File 'lib/familia/horreum/management.rb', line 696

def all(suffix = nil)
  suffix ||= self.suffix
  # objects that could not be parsed will be nil
  find_keys(suffix).filter_map { |k| find_by_key(k) }
end

#any?Boolean

Note:

For authoritative check, use #scan_any? (production-safe) or #keys_any? (blocking)

Checks if any tracked instances exist (fast, from instances sorted set).

This method provides O(1) performance by querying the instances sorted set. However, objects deleted outside Familia may leave stale entries.

Examples:

User.create(email: 'test@example.com')
User.any?  #=> true

Returns:

  • (Boolean)

    true if instances sorted set is non-empty

See Also:



793
794
795
# File 'lib/familia/horreum/management.rb', line 793

def any?
  count.positive?
end

#build {|instance| ... } ⇒ Horreum

Builds, populates, and atomically persists a new instance in one step.

This is a factory wrapper around Horreum#atomic_write for the common case of "create an object, set up its collections, and save -- all at once". The block receives the freshly-built (but not-yet-persisted) instance. Scalar assignments and collection mutations made inside the block are all committed in a single MULTI/EXEC when the block exits:

  • Scalar setters (+u.name = ...+) stay in memory until the implicit save queues the HMSET inside the transaction.
  • Collection mutations (+u.tags.add(...)+) auto-route into the open transaction because +DataType#dbclient+ honours +Fiber[:familia_transaction]+.

Nothing reaches the database until the block exits, so a factory no longer has to choose between sequencing +save+ before collection writes or reaching for +atomic_write+ directly.

Persistence semantics

+build+ has create-only semantics: it raises RecordExistsError if an object with the same identifier already exists. This follows the principle of least astonishment -- a factory helper should not silently overwrite existing records. Use Persistence#save or Persistence#save_with_collections when you explicitly want overwrite/upsert behaviour.

Concurrency: both paths use a WATCH + MULTI/EXEC optimistic lock on a single connection for race-safe duplicate detection (not a server-side atomic check). Without a block, +build+ delegates to Persistence#save_if_not_exists!. With a block, +atomic_write+ is called with +watch_keys:+ and +pre_check:+ so the existence check runs between WATCH and MULTI -- if the key is created by another client in that window, Redis aborts the transaction and the method retries with exponential backoff (up to 3 attempts). See issue #288.

Without a block

When called without a block there are no collection operations to fold in, so +build+ uses +save_if_not_exists!+ and returns the instance.

Positional and keyword arguments are forwarded to new. The block is NOT forwarded to the constructor -- it is invoked here, after building, with the new instance.

Examples:

Factory/fixture creation with collections (issue #279)

user = User.build(email: 'alice@example.com') do |u|
  u.tags.add('admin')
  u.sessions.push('abc123')
end
# HMSET + SADD + RPUSH all fire in one MULTI/EXEC at block exit

Without a block (plain save)

user = User.build(email: 'bob@example.com')

Yields:

  • (instance)

    The newly built instance, for scalar/collection setup.

Yield Parameters:

  • instance (Horreum)

    The not-yet-persisted instance.

Returns:

  • (Horreum)

    The built and persisted instance.

Raises:

See Also:



169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/familia/horreum/management.rb', line 169

def build(*, **)
  # Forward only positional/keyword args to the constructor; the block is
  # a post-build callback, so it must not leak into new/initialize.
  instance = new(*, **)

  if block_given?
    instance.atomic_write(
      watch_keys: [instance.dbkey],
      pre_check: -> { raise Familia::RecordExistsError, instance.dbkey if instance.exists? }
    ) { yield instance }
  else
    # No block means no collection ops to fold in, so we can use the
    # WATCH-guarded save_if_not_exists! directly — race-safe.
    instance.save_if_not_exists!
  end

  instance
end

#cleanup_stale_instance_entry(objkey) ⇒ void

This method returns an undefined value.

Removes a stale entry from the instances sorted set.

Call this explicitly when you detect that an object no longer exists and want to prune its ghost entry from the instances timeline. Finder methods (find_by_dbkey, find_by_id, load) are read-only and will not call this automatically.

Parameters:

  • objkey (String)

    The full database key (prefix:identifier:suffix)



311
312
313
314
315
316
317
318
319
320
321
# File 'lib/familia/horreum/management.rb', line 311

def cleanup_stale_instance_entry(objkey)
  return unless respond_to?(:instances)

  # Key format is prefix:identifier:suffix. Use extract_identifier_from_key
  # to correctly handle compound identifiers containing the delimiter.
  identifier = extract_identifier_from_key(objkey)
  return if identifier.nil? || identifier.empty?

  instances.remove(identifier)
  Familia.debug "[cleanup_stale_instance_entry] Removed stale entry: #{identifier}"
end

#config_nameString

Converts the class name into a string that can be used to look up configuration values. This is particularly useful when mapping familia models with specific database numbers in the configuration.

Familia::Horreum::DefinitionMethods#config_name

Examples:

V2::Session.config_name => 'session'

Returns:

  • (String)

    The underscored class name as a string



209
210
211
212
213
# File 'lib/familia/horreum/management.rb', line 209

def config_name
  return nil if name.nil?

  name.demodularize.snake_case
end

#countInteger Also known as: size, length

Note:

For authoritative count, use #scan_count (production-safe) or #keys_count (blocking)

Returns the number of tracked instances (fast, from instances sorted set).

This method provides O(1) performance by querying the instances sorted set, which is automatically maintained when objects are created/destroyed through Familia. However, objects deleted outside Familia (e.g., direct Redis commands) may leave stale entries.

Examples:

User.create(email: 'test@example.com')
User.count  #=> 1

Returns:

  • (Integer)

    Number of instances in the instances sorted set

See Also:



720
721
722
# File 'lib/familia/horreum/management.rb', line 720

def count
  instances.count
end

#create! {|hobj| ... } ⇒ Object

Note:

The behavior of this method depends on the implementation of #new,

exists?, and #save in the class and its superclasses.

Creates and persists a new instance of the class.

This method serves as a factory method for creating and persisting new instances of the class. It combines object instantiation, existence checking, and persistence in a single operation.

The method is flexible in accepting both positional and keyword arguments:

  • Positional arguments (*args) are passed directly to the constructor.
  • Keyword arguments (**kwargs) are passed as a hash to the constructor.

After instantiation, the method checks if an object with the same identifier already exists. If it does, a Familia::RecordExistsError exception is raised to prevent overwriting existing data.

Concurrency: the duplicate check is race-safe via optimistic locking. It routes through Persistence#save_if_not_exists!, which uses WATCH + MULTI/EXEC on a single connection to abort if the key appears between the check and the write. This is an effective optimistic lock, though not a server-side atomic check (e.g. Lua). See Persistence#save_if_not_exists!.

Finally, the method saves the new instance returns it.

Examples:

Creating an object with keyword arguments

User.create(name: "John", age: 30)

Creating an object with positional and keyword arguments (not recommended)

Product.create("SKU123", name: "Widget", price: 9.99)

Post-creation callback

User.create!(email: "alice@example.com") do |user|
  user.sessions.push(SecureRandom.uuid)
  AuditLog.record(:user_created, user.identifier)
end

Parameters:

  • args (Array)

    Variable number of positional arguments to be passed to the constructor.

  • kwargs (Hash)

    Keyword arguments to be passed to the constructor.

Yields:

  • (hobj)

    Yields the persisted instance after a successful save. The block is skipped entirely if +save_if_not_exists!+ raises (e.g. RecordExistsError), so code inside the block can safely assume the object exists in the database.

Yield Parameters:

  • hobj (Horreum)

    The newly created and persisted instance.

Yield Returns:

  • (void)

    The block's return value is ignored; +create!+ always returns the created instance.

Returns:

  • (Object)

    The newly created and persisted instance.

Raises:

See Also:



85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/familia/horreum/management.rb', line 85

def create!(...)
  hobj = new(...)
  # Race-safe duplicate guard: WATCH + MULTI/EXEC optimistic lock on one
  # connection (not a server-side atomic check).
  hobj.save_if_not_exists!

  # If a block is given, yield the created object
  # This allows for additional operations on successful creation
  yield hobj if block_given?

  hobj
end

#dbkey(identifier, suffix = self.suffix) ⇒ Object



687
688
689
690
691
692
693
694
# File 'lib/familia/horreum/management.rb', line 687

def dbkey(identifier, suffix = self.suffix)
  if identifier.to_s.empty?
    raise NoIdentifier, "#{self} requires non-empty identifier, got: #{identifier.inspect}"
  end

  identifier &&= identifier.to_s
  Familia.dbkey(prefix, identifier, suffix)
end

#destroy!(identifier, suffix = nil) ⇒ Boolean

Destroys an object in Database with the given identifier.

Deletes the main hash key, all related fields, and removes the identifier from the +instances+ sorted set. This is the class-level counterpart to the instance method of the same name.

This method is part of Familia's high-level object lifecycle management. While delete! operates directly on dbkeys, destroy! operates at the object level and is used for ORM-style operations. Use destroy! when removing complete objects from the system, and delete! when working directly with dbkeys.

Examples:

User.destroy!(123)  # Removes user:123:object from Valkey/Redis

Parameters:

  • identifier (String, Integer)

    The unique identifier for the object to destroy.

  • suffix (Symbol, nil) (defaults to: nil)

    The suffix to use in the dbkey (default: class suffix).

Returns:

  • (Boolean)

    true if the object was successfully destroyed, false otherwise.

Raises:



573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
# File 'lib/familia/horreum/management.rb', line 573

def destroy!(identifier, suffix = nil)
  suffix ||= self.suffix
  raise Familia::NoIdentifier, "#{self} requires non-empty identifier" if identifier.to_s.empty?

  objkey = dbkey identifier, suffix

  # Execute all deletion operations within a transaction
  transaction do |conn|
    # Clean up related fields first to avoid orphaned keys
    if relations?
      Familia.trace :DESTROY_RELATIONS!, nil, "#{self} has relations: #{related_fields.keys}" if Familia.debug?

      # Create a temporary instance to access related fields.
      # Pass identifier in constructor so init() sees it and can set dependent fields.
      identifier_field_name = self.identifier_field
      temp_instance = identifier_field_name ? new(identifier_field_name => identifier.to_s) : new

      related_fields.each do |name, _definition|
        obj = temp_instance.send(name)
        Familia.trace :DESTROY_RELATION!, name, "Deleting related field #{name} (#{obj.dbkey})" if Familia.debug?
        conn.del(obj.dbkey)
      end
    end

    # Delete the main object key
    ret = conn.del(objkey)
    Familia.trace :DESTROY!, nil, "#{objkey} #{ret.inspect}" if Familia.debug?

    # Remove from instances collection to avoid ghost entries
    instances.remove(identifier) if respond_to?(:instances)
  end
end

#exists?(identifier, suffix = nil) ⇒ Boolean

Checks if an object with the given identifier exists in the database.

This method constructs the full dbkey using the provided identifier and suffix, then checks if the key exists in the database.

Examples:

User.exists?(123)  # Returns true if user:123:object exists in Valkey/Redis

Parameters:

  • identifier (String, Integer)

    The unique identifier for the object.

  • suffix (Symbol, nil) (defaults to: nil)

    The suffix to use in the dbkey (default: class suffix).

Returns:

  • (Boolean)

    true if the object exists, false otherwise.

Raises:



539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
# File 'lib/familia/horreum/management.rb', line 539

def exists?(identifier, suffix = nil)
  raise NoIdentifier, 'Empty identifier' if identifier.to_s.empty?

  suffix ||= self.suffix

  objkey = dbkey identifier, suffix

  ret = dbclient.exists objkey
  Familia.trace :EXISTS, nil, "#{objkey} #{ret.inspect}" if Familia.debug?

  # Handle Redis::Future objects during transactions
  return ret if ret.is_a?(Redis::Future)

  ret.positive? # differs from Valkey API but I think it's okay bc `exists?` is a predicate method.
end

#extract_identifier_from_key(key, key_suffix = suffix) ⇒ String?

Extracts the identifier from a full Redis key by stripping the known prefix and suffix.

This is safe for compound identifiers that contain the delimiter character (e.g., "mymodel:foo:bar:object" where the identifier is "foo:bar"). A naive split on the delimiter would truncate these.

Examples:

User.extract_identifier_from_key("user:alice:object")       #=> "alice"
User.extract_identifier_from_key("user:foo:bar:object")    #=> "foo:bar"

Parameters:

  • key (String)

    Full Redis key (e.g., "user:alice:object")

  • key_suffix (String) (defaults to: suffix)

    The suffix to strip (default: class suffix)

Returns:

  • (String, nil)

    The extracted identifier, or nil if the key does not match the expected prefix/suffix structure



677
678
679
680
681
682
683
684
685
# File 'lib/familia/horreum/management.rb', line 677

def extract_identifier_from_key(key, key_suffix = suffix)
  d = Familia.delim
  pfx = "#{prefix}#{d}"
  sfx = "#{d}#{key_suffix}"

  return nil unless key.start_with?(pfx) && key.end_with?(sfx)

  key[pfx.length..-(sfx.length + 1)]
end

#familia_nameObject

Familia::Horreum::DefinitionMethods#familia_name

Examples:

V2::Session.config_name => 'Session'



219
220
221
222
223
# File 'lib/familia/horreum/management.rb', line 219

def familia_name
  return nil if name.nil?

  name.demodularize
end

#find_by_dbkey(objkey, check_exists: true) ⇒ Object? Also known as: find_by_key

Note:

This method is read-only. Ghost entries (identifiers lingering in +instances+ after their hash key expires) are not cleaned up here. Use +cleanup_stale_instance_entry+ explicitly when cleanup is desired.

Note:

When check_exists: false, HGETALL on non-existent keys returns {} which we detect and return nil (not an empty object instance).

Retrieves and instantiates an object from Database using the full object key.

This method can operate in two modes:

Safe mode (check_exists: true, default):

  1. First checks if the key exists with EXISTS command
  2. Returns nil immediately if key doesn't exist
  3. If exists, retrieves data with HGETALL and instantiates object
  4. Best for: Single object lookups, defensive code
  5. Commands: 2 per object (EXISTS + HGETALL)

Optimized mode (check_exists: false):

  1. Directly calls HGETALL without EXISTS check
  2. Returns nil if HGETALL returns empty hash (key doesn't exist)
  3. Otherwise instantiates object with returned data
  4. Best for: Bulk operations, performance-critical paths, when keys likely exist
  5. Commands: 1 per object (HGETALL only)
  6. Reduction: 50% fewer Redis commands

Examples:

Safe mode (default)

User.find_by_key("user:123")  # 2 commands: EXISTS + HGETALL

Optimized mode (skip existence check)

User.find_by_key("user:123", check_exists: false)  # 1 command: HGETALL

Parameters:

  • objkey (String)

    The full dbkey for the object.

  • check_exists (Boolean) (defaults to: true)

    Whether to check key existence before HGETALL (default: true). When false, skips EXISTS check for better performance but still returns nil for non-existent keys (detected via empty hash).

Returns:

  • (Object, nil)

    An instance of the class if the key exists, nil otherwise.

Raises:

  • (ArgumentError)

    If the provided key is empty.



266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# File 'lib/familia/horreum/management.rb', line 266

def find_by_dbkey(objkey, check_exists: true)
  raise ArgumentError, 'Empty key' if objkey.to_s.empty?

  if check_exists
    # Safe mode: Check existence first (original behavior)
    # We use a lower-level method here b/c we're working with the
    # full key and not just the identifier.
    does_exist = Familia.positive?(dbclient.exists(objkey))

    Familia.debug "[find_by_key] #{self} from key #{objkey} (exists: #{does_exist})"
    Familia.trace :FIND_BY_DBKEY_KEY, nil, objkey if Familia.debug?

    # This is the reason for calling exists first. We want to definitively
    # and without any ambiguity know if the object exists in the database. If it
    # doesn't, we return nil. If it does, we proceed to load the object.
    # Otherwise, hgetall will return an empty hash, which will be passed to
    # the constructor, which will then be annoying to debug.
    return nil unless does_exist
  else
    # Optimized mode: Skip existence check
    Familia.debug "[find_by_key] #{self} from key #{objkey} (check_exists: false)"
    Familia.trace :FIND_BY_DBKEY_KEY, nil, objkey if Familia.debug?
  end

  obj = dbclient.hgetall(objkey) # horreum objects are persisted as database hashes
  Familia.trace :FIND_BY_DBKEY_INSPECT, nil, "#{objkey}: #{obj.inspect}" if Familia.debug?

  # Always check for empty hash to handle race conditions where the key
  # expires between EXISTS check and HGETALL (when check_exists: true),
  # or simply doesn't exist (when check_exists: false).
  return nil if obj.empty?

  # Create instance and deserialize fields using shared helper method
  instantiate_from_hash(obj)
end

#find_by_identifier(identifier, suffix: nil, check_exists: true) ⇒ Object? Also known as: find_by_id

Retrieves and instantiates an object from Database using its identifier.

Returns a fully-hydrated instance if the key exists, or +nil+ if it does not. This method never returns a "shell" object with empty fields. If you need an in-memory placeholder without loading from the database, use +new(identifier)+ instead -- but be aware that such an object has no persisted field values and will overwrite existing data if saved.

This method constructs the full dbkey using the provided identifier and suffix, then delegates to find_by_key for the actual retrieval and instantiation.

It's a higher-level method that abstracts away the key construction, making it easier to retrieve objects when you only have their identifier.

Examples:

Safe mode (default)

user = User.find_by_id(123)  # 2 commands: EXISTS + HGETALL
user  # => #<User ...> or nil

Optimized mode

User.find_by_id(123, check_exists: false)  # 1 command: HGETALL

Custom suffix

Session.find_by_id('abc', suffix: :session)

Common pitfall: new() vs load()

User.load('nonexistent')  # => nil (key does not exist)
User.new('nonexistent')   # => #<User> (in-memory shell, no DB data)

Parameters:

  • identifier (String, Integer)

    The unique identifier for the object.

  • suffix (Symbol, nil) (defaults to: nil)

    The suffix to use in the dbkey (default: class suffix). Keyword parameter for consistency with check_exists.

  • check_exists (Boolean) (defaults to: true)

    Whether to check key existence before HGETALL (default: true). See find_by_dbkey for details.

Returns:

  • (Object, nil)

    An instance of the class if found, +nil+ if the key does not exist in the database.

See Also:



366
367
368
369
370
371
372
373
374
375
# File 'lib/familia/horreum/management.rb', line 366

def find_by_identifier(identifier, suffix: nil, check_exists: true)
  suffix ||= self.suffix
  return nil if identifier.to_s.empty?

  objkey = dbkey(identifier, suffix)

  Familia.debug "[find_by_id] #{self} from key #{objkey})"
  Familia.trace :FIND_BY_ID, nil, objkey if Familia.debug?
  find_by_dbkey objkey, check_exists: check_exists
end

#find_keys(suffix = '*') ⇒ Array<String>

Finds all keys in Database matching the given suffix pattern.

This method searches for all dbkeys that match the given suffix pattern. It uses the class's dbkey method to construct the search pattern.

Examples:

User.find  # Returns all keys matching user:*:object
User.find('active')  # Returns all keys matching user:*:active

Parameters:

  • suffix (String) (defaults to: '*')

    The suffix pattern to match (default: '*').

Returns:

  • (Array<String>)

    An array of matching dbkeys.



618
619
620
# File 'lib/familia/horreum/management.rb', line 618

def find_keys(suffix = '*')
  dbclient.keys(dbkey('*', suffix)) || []
end

#in_instances?(identifier) ⇒ Boolean

Checks whether the given identifier appears in the +instances+ sorted set.

This is a fast O(log N) ZSCORE lookup. It does NOT verify that the underlying hash key still exists in the database -- use #exists? for that. A true result means the object was persisted through Familia at some point and has not been removed from instances since.

Examples:

Quick instances check without hitting HGETALL

User.in_instances?('cust_abc123')  # => true

Parameters:

  • identifier (String, Integer)

    The unique identifier to check.

Returns:

  • (Boolean)

    true if the identifier is present in the instances sorted set, false otherwise.

See Also:



521
522
523
524
525
# File 'lib/familia/horreum/management.rb', line 521

def in_instances?(identifier)
  return false if identifier.to_s.empty?

  instances.member?(identifier)
end

#instantiate_from_hash(obj_hash) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Note:

This method:

  1. Allocates a new instance without calling initialize
  2. Initializes related DataType fields
  3. Deserializes and assigns field values from the hash

Instantiates an object from a hash of field values.

This is an internal helper method used by find_by_dbkey, load_multi, and load_multi_by_keys to eliminate code duplication. Not intended for direct use.

Parameters:

  • obj_hash (Hash)

    Hash of field names to serialized values from Redis

Returns:

  • (Object)

    Instantiated object with deserialized fields



861
862
863
864
865
866
867
868
869
870
871
872
# File 'lib/familia/horreum/management.rb', line 861

def instantiate_from_hash(obj_hash)
  instance = allocate
  instance.instance_variable_set(:@dirty_fields, Concurrent::Map.new)
  instance.instance_variable_set(:@warned_dirty_signatures, Concurrent::Map.new)
  instance.send(:initialize_relatives)
  instance.send(:initialize_with_keyword_args_deserialize_value, **obj_hash)
  # Object was just loaded from Redis, so it matches DB state exactly.
  # Clear dirty flags set during field assignment above, mirroring what
  # initialize (horreum.rb:246) and refresh! (persistence.rb:608) do.
  instance.send(:clear_dirty!)
  instance
end

#key_prefixString

Returns the key prefix for this class including the delimiter.

Centralizes key prefix generation to prevent bugs from manual string interpolation across the codebase.

Examples:

User.key_prefix  #=> "user:"

Returns:

  • (String)

    The prefix with delimiter (e.g., "customer:")



643
644
645
# File 'lib/familia/horreum/management.rb', line 643

def key_prefix
  "#{prefix}#{Familia.delim}"
end

#keys_any?(filter = '*') ⇒ Boolean

Note:

For production-safe authoritative check, use #scan_any?

Checks if any objects exist using blocking KEYS command (production-dangerous).

⚠️ WARNING: This method uses the KEYS command which blocks Redis during execution. It scans ALL keys in the database and should NEVER be used in production.

Examples:

User.keys_any?       #=> true  (any User objects)
User.keys_any?('a*') #=> true  (Users with IDs starting with 'a')

Parameters:

  • filter (String) (defaults to: '*')

    Key pattern to match (default: '*')

Returns:

  • (Boolean)

    true if any matching keys exist in Redis

See Also:



813
814
815
# File 'lib/familia/horreum/management.rb', line 813

def keys_any?(filter = '*')
  keys_count(filter).positive?
end

#keys_count(filter = '*') ⇒ Integer

Note:

For production-safe authoritative count, use #scan_count

Returns authoritative count using blocking KEYS command (production-dangerous).

⚠️ WARNING: This method uses the KEYS command which blocks Redis during execution. It scans ALL keys in the database and should NEVER be used in production.

Examples:

User.keys_count       #=> 1  (all User objects)
User.keys_count('a*') #=> 1  (Users with IDs starting with 'a')

Parameters:

  • filter (String) (defaults to: '*')

    Key pattern to match (default: '*')

Returns:

  • (Integer)

    Number of matching keys in Redis

See Also:



742
743
744
# File 'lib/familia/horreum/management.rb', line 742

def keys_count(filter = '*')
  dbclient.keys(dbkey(filter)).compact.size
end

#load_multi(identifiers, suffix = nil) ⇒ Array<Object> Also known as: load_batch

Note:

Returns nil for non-existent keys (maintains same contract as find_by_id)

Note:

Objects are returned in the same order as input identifiers

Note:

Empty/nil identifiers are skipped and return nil in result array

Loads multiple objects by their identifiers using pipelined HGETALL commands.

This method provides significant performance improvements for bulk loading by:

  1. Batching all HGETALL commands into a single Redis pipeline
  2. Eliminating network round-trip overhead
  3. Skipping individual EXISTS checks (like check_exists: false)

Performance characteristics:

  • Standard approach: N objects × 2 commands (EXISTS + HGETALL) = 2N round trips
  • check_exists: false: N objects × 1 command (HGETALL) = N round trips
  • load_multi: 1 pipeline with N commands = 1 round trip
  • Improvement: Up to 2N× faster for bulk operations

Examples:

Load multiple users efficiently

users = User.load_multi([123, 456, 789])
# 1 pipeline with 3 HGETALL commands instead of 6 individual commands

Filter out nils

existing_users = User.load_multi(ids).compact

Parameters:

  • identifiers (Array<String, Integer>)

    Array of identifiers to load

  • suffix (Symbol, nil) (defaults to: nil)

    The suffix to use in dbkeys (default: class suffix)

Returns:

  • (Array<Object>)

    Array of instantiated objects (nils for non-existent)



408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
# File 'lib/familia/horreum/management.rb', line 408

def load_multi(identifiers, suffix = nil)
  suffix ||= self.suffix
  return [] if identifiers.empty?

  # Build list of valid keys and track their original positions
  valid_keys = []
  valid_positions = []

  identifiers.each_with_index do |identifier, idx|
    next if identifier.to_s.empty?

    valid_keys << dbkey(identifier, suffix)
    valid_positions << idx
  end

  Familia.trace :LOAD_MULTI, nil, "Loading #{identifiers.size} objects" if Familia.debug?

  # Pipeline all HGETALL commands
  multi_result = pipelined do |pipeline|
    valid_keys.each do |objkey|
      pipeline.hgetall(objkey)
    end
  end

  # Extract results array from MultiResult
  results = multi_result.results

  # Map results back to original positions
  objects = Array.new(identifiers.size)
  valid_positions.each_with_index do |pos, result_idx|
    obj_hash = results[result_idx]

    # Skip empty hashes (non-existent keys)
    next if obj_hash.nil? || obj_hash.empty?

    # Instantiate object using shared helper method
    objects[pos] = instantiate_from_hash(obj_hash)
  end

  objects
end

#load_multi_by_keys(objkeys) ⇒ Array<Object>

Note:

Returns nil for empty/nil keys, maintaining position alignment with input array

Loads multiple objects by their full dbkeys using pipelined HGETALL commands.

This is a lower-level variant of load_multi that works directly with dbkeys instead of identifiers. Useful when you already have the full keys.

Examples:

Load objects by full keys

keys = ["user:123:object", "user:456:object"]
users = User.load_multi_by_keys(keys)

Parameters:

  • objkeys (Array<String>)

    Array of full dbkeys to load

Returns:

  • (Array<Object>)

    Array of instantiated objects (nils for non-existent)

See Also:



467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
# File 'lib/familia/horreum/management.rb', line 467

def load_multi_by_keys(objkeys)
  return [] if objkeys.empty?

  Familia.trace :LOAD_MULTI_BY_KEYS, nil, "Loading #{objkeys.size} objects" if Familia.debug?

  # Track which positions have valid keys to maintain result array alignment
  valid_positions = []
  objkeys.each_with_index do |objkey, idx|
    valid_positions << idx unless objkey.to_s.empty?
  end

  # Pipeline all HGETALL commands for valid keys
  multi_result = pipelined do |pipeline|
    objkeys.each do |objkey|
      next if objkey.to_s.empty?
      pipeline.hgetall(objkey)
    end
  end

  # Extract results array from MultiResult
  results = multi_result.results

  # Map results back to original positions
  objects = Array.new(objkeys.size)
  valid_positions.each_with_index do |pos, result_idx|
    obj_hash = results[result_idx]

    # Skip empty hashes (non-existent keys)
    next if obj_hash.nil? || obj_hash.empty?

    # Instantiate object using shared helper method
    objects[pos] = instantiate_from_hash(obj_hash)
  end

  objects
end

#multigetObject



188
189
190
# File 'lib/familia/horreum/management.rb', line 188

def multiget(...)
  rawmultiget(...).filter_map { |json| Familia::JsonSerializer.parse(json) }
end

#rawmultiget(*hids) ⇒ Object



192
193
194
195
196
197
198
# File 'lib/familia/horreum/management.rb', line 192

def rawmultiget(*hids)
  hids.collect! { |hobjid| dbkey(hobjid) }
  return [] if hids.compact.empty?

  Familia.trace :MULTIGET, nil, "#{hids.size}: #{hids}" if Familia.debug?
  dbclient.mget(*hids)
end

#scan_any?(filter = '*') ⇒ Boolean Also known as: any!

Note:

For fast check (potentially stale), use #any?

Checks if any objects exist using non-blocking SCAN command (production-safe).

This method uses cursor-based SCAN iteration to check for matching keys without blocking Redis. Safe for production use and returns early on first match.

Examples:

User.scan_any?       #=> true  (any User objects)
User.scan_any?('a*') #=> true  (Users with IDs starting with 'a')

Parameters:

  • filter (String) (defaults to: '*')

    Key pattern to match (default: '*')

Returns:

  • (Boolean)

    true if any matching keys exist in Redis

See Also:



833
834
835
836
837
838
839
840
841
842
843
844
# File 'lib/familia/horreum/management.rb', line 833

def scan_any?(filter = '*')
  pattern = dbkey(filter)
  cursor = "0"

  loop do
    cursor, keys = dbclient.scan(cursor, match: pattern, count: 100)
    return true unless keys.empty?
    break if cursor == "0"
  end

  false
end

#scan_count(filter = '*') ⇒ Integer Also known as: count!

Note:

For fast count (potentially stale), use #count

Returns authoritative count using non-blocking SCAN command (production-safe).

This method uses cursor-based SCAN iteration to count matching keys without blocking Redis. Safe for production use as it processes keys in chunks.

Examples:

User.scan_count       #=> 1  (all User objects)
User.scan_count('a*') #=> 1  (Users with IDs starting with 'a')

Parameters:

  • filter (String) (defaults to: '*')

    Key pattern to match (default: '*')

Returns:

  • (Integer)

    Number of matching keys in Redis

See Also:



762
763
764
765
766
767
768
769
770
771
772
773
774
# File 'lib/familia/horreum/management.rb', line 762

def scan_count(filter = '*')
  pattern = dbkey(filter)
  count = 0
  cursor = "0"

  loop do
    cursor, keys = dbclient.scan(cursor, match: pattern, count: 1000)
    count += keys.size
    break if cursor == "0"
  end

  count
end

#scan_pattern(match_suffix = suffix) ⇒ String

Returns the SCAN pattern for finding all objects of this class.

Centralizes SCAN pattern generation to ensure consistency across rebuild strategies and other key enumeration operations.

Examples:

User.scan_pattern           #=> "user:*:object"
User.scan_pattern('active') #=> "user:*:active"

Parameters:

  • match_suffix (String) (defaults to: suffix)

    The suffix to match (default: class suffix)

Returns:

  • (String)

    The SCAN pattern (e.g., "customer:*:object")



658
659
660
# File 'lib/familia/horreum/management.rb', line 658

def scan_pattern(match_suffix = suffix)
  "#{prefix}#{Familia.delim}*#{Familia.delim}#{match_suffix}"
end

#storage_inspect(identifier_or_key) ⇒ Hash{String => Hash}?

Decodes raw HGETALL output for debugging purposes.

When inspecting data from redis-cli, field values appear as raw JSON-encoded strings (e.g. +"\"UK\""+ for the string +"UK"+). This method retrieves the hash, deserializes each value, and returns a diagnostic hash showing the raw stored form, decoded Ruby value, and Ruby type for every field.

Accepts either an identifier (resolved via +dbkey+) or a full database key (detected by the presence of the class delimiter).

Examples:

Inspect a stored object by identifier

Customer.storage_inspect('cust_abc123')
# => {"email" => {raw: "\"test@example.com\"", decoded: "test@example.com", type: "String"},
#     "plan_id" => {raw: "42", decoded: 42, type: "Integer"}}

Inspect by full key

Customer.storage_inspect('customer:cust_abc123:object')

Parameters:

  • identifier_or_key (String)

    An identifier or full database key

Returns:

  • (Hash{String => Hash})

    Diagnostic hash per field:

    • +:raw+ [String] The raw string stored in Redis
    • +:decoded+ [Object] The deserialized Ruby value
    • +:type+ [String] The Ruby class name of the decoded value
  • (nil)

    If the key does not exist

See Also:



902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
# File 'lib/familia/horreum/management.rb', line 902

def storage_inspect(identifier_or_key)
  # Determine if this is a full key or an identifier
  objkey = if identifier_or_key.to_s.include?(Familia.delim)
    identifier_or_key.to_s
  else
    dbkey(identifier_or_key)
  end

  raw_hash = dbclient.hgetall(objkey)
  return nil if raw_hash.empty?

  # Use a temporary instance for deserialization (needs serialize_value/deserialize_value)
  temp = allocate
  temp.instance_variable_set(:@dirty_fields, Concurrent::Map.new)
  temp.instance_variable_set(:@warned_dirty_signatures, Concurrent::Map.new)
  temp.send(:initialize_relatives)

  raw_hash.each_with_object({}) do |(field, raw_val), result|
    decoded = temp.send(:deserialize_value, raw_val, field_name: field.to_sym)
    result[field] = {
      raw: raw_val,
      decoded: decoded,
      type: decoded.class.name
    }
  end
end