GitHub - Laragear/Fingerprint: Ridiculously fast non-cryptographic hashes in your application or Eloquent Models

Ridiculously fast non-cryptographic hashes in your application or Eloquent Models - Laragear/Fingerprint

GitHub
@darkghosthunter What are some uses for this?

@outofcontrol Particularly, anything that is too large to compare, or to track changes.

By knowing the hash of something, you may compare it didn't change to.

For example, instead of retrieving the whole article from the database, you retrieve the hash, and compare that hash from the frontend article being edited.

@darkghosthunter Ah, Nice! That is something I could have probably used more than once :(