Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scalability of the plugin #5

Open
nanu-c opened this issue Apr 26, 2020 · 2 comments
Open

scalability of the plugin #5

nanu-c opened this issue Apr 26, 2020 · 2 comments
Labels
enhancement New feature or request question Further information is requested

Comments

@nanu-c
Copy link

nanu-c commented Apr 26, 2020

First 1000 thanks for this ticker its simple and great :)

In the current version on the wp-plugin repository the ticker is broken, because the date query is wrong

'date_query'     => array(
   'after' => date( 'c', $last_poll ),
)

'c', $last_poll results in 2020-04-26T21:05:24+00:00 but wordpress is expecting something like 2020-04-26 20:56:22.
Solution is

'date_query'     => array(
   'after' => date( 'Y-m-d H:i:s', $last_poll ),
),

Then i looked in your code here and saw, that you solved it already.


So my main concern is now, if you have 20.000 simultaneous visitors who are making a ajax every 20 seconds and every call results in a db poll leads to a problem ;)

@stklcode
Copy link
Owner

stklcode commented Apr 26, 2020

Thanks for your feedback.

You are right, the first part has been solved with upcoming v1.1.

Assuming you’re not displaying thousands of ticks, the actual DB load for a single query is rather low. However a good point.
I will try to utilize WP caching mechanisms to reduce DB load in such scenarios.

@stklcode stklcode added this to the 1.2 milestone Apr 27, 2020
@stklcode stklcode added enhancement New feature or request question Further information is requested labels Apr 27, 2020
@stklcode
Copy link
Owner

stklcode commented Nov 10, 2020

So my main concern is now, if you have 20.000 simultaneous visitors who are making a ajax every 20 seconds and every call results in a db poll leads to a problem ;)

With the next version 1.2 the AJAX calls will target the REST API instead of the AJAX endpoint and will use the modification timestamp of the latest tick received. (see #15)

This will have two posititive impacts here:

  1. all visitors will use the same "lastPoll" value of no new tick has been published in between
  2. doing so the API requests are equal and can be served from cache

@stklcode stklcode removed this from the 1.2 milestone Jan 23, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants