Best laravel framework open-source packages.

Eloquence

Eloquence provides a cache on top of Eloquent that prevents multiple models being created for a single database row using the Identity Map design pattern.
Updated 1 year ago

Due to a conflict in naming, this package has been renamed as eloquent-identity to avoid confusion.

Eloquence

Latest Stable Version Latest Unstable Version License Scrutinizer Code Quality

Eloquence provides a cache on top of Eloquent that prevents multiple models being created for a single database row using the Identity Map design pattern (P of EAA Wikipedia).

Table of Contents

Installing

To install this package simply run the following command.

composer require sprocketbox/eloquence

This package uses auto-discovery to register the service provider but if you'd rather do it manually, the service provider is:

Sprocketbox\Eloquence\ServiceProvider

There is no configuration required.

Usage

To make use of Eloquence on your models, add the following trait.

Sprocketbox\Eloquence\Concerns\MapsIdentity

Finding

Any calls to find(), findOrFail() or findOrNew() on a model that uses this trait, will skip the query if a model has already been created using the provided id.

Calls to findMany() will skip any ids that have already been used, only querying ones that are not present in the cache.

The query is only skipped if there are no where clauses, joins or having statements.

If you wish to force the query, you can call refreshIdentityMap() on the query builder instance. If you wish to skip the query on a builder instance where refreshIdentityMap() has been called, you can call useIdentityMap().

Hydrating

When the query builder attempts to create a new instance of a model using this trait, with a key that matches an already existing instance of the model, the existing instance will be used.

If the model is using timestamps, and the returned attributes are newer, the attributes on the existing instance will be updated, but will retain any changes you'd previously made.

BelongsTo

If a belongs to relationship is loaded (not belongs to many) without constraints and without refreshIdentityMap() being called, the query will skip any model instances that already exist.

Flushing

If you wish to flush the cached models, call flushIdentities() on an instance of IdentityManager, or on the Eloquence facade.

How

The IdentityManager stores an array containing all existing model instances and their identity.

The identities for models are stored as string, created using the following class.

Sprocketbox\Eloquence\ModelIdentity

This contains a key, the model class name, and the connection name. The string version of these looks like so:

connection:class:key

Why

It's very easy to end up with multiple versions of the same model, meaning that updates on one aren't persisted to others.

Eloquence was created to reduce the number of models created, help limit unnecessary queries, and allow for consistent model interaction. It doesn't matter where in your code you're dealing with user 1, any changes made during a request will persist across all instances.