Updated specific locations to be searchable, take a look at Las Vegas as an example.

This post has been de-listed

It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.

18
How do you handle real-time in your applications?
Post Flair (click to view more posts with a particular flair)
Post Body

I can't find anyone covering this issue in a practical manner.

Let's say we have a fairly large SaaS multi tenant Rails app, with a bunch of ActiveRecord models, and a react/vue client to power the SPA front-end.

How do you approach making this app update data for all users in realtime?

I understand most articles out there show that you can use websockets to emit events to the client and listen to them on the frontend, but it's often an over-simplified view that doesn't cover:

  • How to abstract out ActiveRecord data sync on both the backend and frontend? (similar to firestore data bind)
  • What about race conditions when emitting the update events from activerecord? should there be versioning to avoid the possible issue of an old update event being received after the newest.

I'm asking because i built out a hackish, standardized way to emit changes from Rails via pusher on all models:

class ApplicationRecord < ActiveRecord::Base
  self.abstract_class = true

  after_commit :sync_payload

  def sync_payload
    if respond_to?("pusher_channel_name")
      channel = pusher_channel_name
      event = "#{self.class.name.underscore.dasherize}-updated"

      return if ch.blank? || ch.is_a?(Array) && ch.empty?

      if channel
        if destroyed?
          push_payload(channel, event, { id: id, _destroyed: true })
        else
          push_payload(channel, event, as_json)
        end
      end
    end
  end
end

On the client side (Vue), i built out mixin methods to listen for these events and change data.

As you can see this is subject to race conditions and it doesn't make sure events are sent in order, and there's various concerns on how reliable this is and if users will always have up-to-date data.

I'm curious to see how others approach this problem.

Author
Account Strength
90%
Account Age
14 years
Verified Email
Yes
Verified Flair
No
Total Karma
3,928
Link Karma
3,535
Comment Karma
393
Profile updated: 3 days ago
Posts updated: 7 months ago

Subreddit

Post Details

We try to extract some basic information from the post title. This is not always successful or accurate, please use your best judgement and compare these values to the post title and body for confirmation.
Posted
4 years ago