JSONAPI-Resources / JSONAPI-Resources/jsonapi-resources

Caching keys lack sub second precision

Offen
#1,216 0 Kommentare 2 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen

Dieses Issue hat noch niemand übernommen.

Vorherrschende Sprache
Ruby
Sterne
2.3k
Forks
546
PR-Merge-Kennzahlen
Keine gemergten PRs in 30 T.

Beschreibung

This issue is a (choose one):

  • Problem/bug report.
  • Feature request.
  • Request for support. Note: Please try to avoid submitting issues for support requests. Use Gitter instead.

Checklist before submitting:

  • I've searched for an existing issue.
  • I've asked my question on Gitter and have not received a satisfactory answer.
  • I've included a complete bug report template. This step helps us and allows us to see the bug without trying to reproduce the problem from your description. It helps you because you will frequently detect if it's a problem specific to your project.
  • The feature I'm asking for is compliant with the JSON:API spec.

Description

Choose one section below and delete the other:

Bug reports:

The mechanism for building a cache key by default uses the rails updated_at field, which when stringified truncates the millisecond precision, which means that if two requests arrive and mutate a record in less than a second, the first write will win - which is the exact opposite of what you would want.

This is the monkey patched fix we've deployed

    keys = cache_ids.map do |(id, cache_key)|
      # If the cache key is a time object make it a high precision time object
      if cache_key.is_a? Time
        cache_key = cache_key.iso8601(4)
      end
      [type, id, cache_key, serializer_config_key, context_key]
    end

Beitragsleitfaden

Für dieses Repository ist kein Beitragsleitfaden indexiert

Erste Schritte

  1. Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
  2. Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
  3. Forke das Repository und arbeite in einem Branch.
  4. Öffne einen Pull Request, der die Issue-Nummer nennt.

Rechercherichtung

Beginne damit, den standardmäßigen Cache-Key-Builder und die Verarbeitung von Rails updated_at-Werten zu lokalisieren. Führe zwei Mutationen eines Datensatzes mit weniger als einer Sekunde Abstand aus und überprüfe anschließend, dass die resultierenden Cache-Keys die Genauigkeit unterhalb einer Sekunde beibehalten und dass die Regression durch einen Test abgedeckt ist.

Vom Indexierungsmodell aus dem Issue-Text verfasst.

Bewertung

Tech-Stack
rails, ruby
Bereich
backend
Issue-Typ
Bug
Schwierigkeit
2/5
Geschätzter Aufwand
1-3 Stunden
Aktivitätsstatus
Veraltet
Klarheit
Größtenteils klar
Anfängerfreundlichkeit
55/100

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.