vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Scheduled Task - Run Every 5 Seconds (https://vborg.vbsupport.ru/showthread.php?t=316060)

Mko 12-16-2014 03:36 PM

Scheduled Task - Run Every 5 Seconds
 
I've created a Scheduled Task that will submit a request to an API and store the value returned in a table in my database.
I'm interested in having this Scheduled Task run every 5 seconds, yet in the vB3 AdminCP, the only fields I see are Day of the Week, Day of the Month, Hour, and Minute. However, Minute has 6 fields attributed to it, which I am also confused about.

How would I get my Scheduled Task to run every 5 seconds through vBulletin?

Thanks,
Mark

kh99 12-16-2014 03:45 PM

There are 6 "minute" fields because you can schedule a task to run up to 6 times per hour at certain minutes of the hour. If you choose '*' then it will run once per minute, but that's the most often you can schedule a task to run (unless you modify the code somehow).

I'm assuming that you're using the returned value somewhere, maybe you could do something like before it's displayed check to see if it's more than 5 seconds old, and if it is, request it before displaying it. But then I guess you'd also need a way to keep it from constantly being requested by multiple threads, especially if you have a very busy site,

Mko 12-16-2014 03:54 PM

Quote:

Originally Posted by kh99 (Post 2527471)
There are 6 "minute" fields because you can schedule a task to run up to 6 times per hour at certain minutes of the hour. If you choose '*' then it will run once per minute, but that's the most often you can schedule a task to run (unless you modify the code somehow).

I'm assuming that you're using the returned value somewhere, maybe you could do something like before it's displayed check to see if it's more than 5 seconds old, and if it is, request it before displaying it. But then I guess you'd also need a way to keep it from constantly being requested by multiple threads, especially if you have a very busy site,

I see. Thanks for the suggestion!

Would the following settings be what I'm after if I wish to have my Task run every minute?
https://vborg.vbsupport.ru/external/2014/12/20.png

kh99 12-16-2014 03:59 PM

Yes, I believe that would do it.

But in case you're not aware, the tasks run when users view your forum pages, so the timing it approximate, and it will only run once per minute if you have enough traffic to your site.

Lynne 12-16-2014 04:00 PM

That should do it. Be aware that the Scheduled Tasks only run if you have users on your site. The tasks will backup if you don't have people clicking on your site.

Mko 12-16-2014 04:24 PM

I see! Thanks for the information.

As a follow-up question...
I have a custom bridge I developed with vB. Since both you reminded me how a user needs to be viewing the forum in order for Scheduled Tasks to execute, I decided to generate $cronimage in my site-wide header (not present on my directory with my vBulletin files) so that Scheduled Tasks hopefully would execute even if nobody is viewing the Forum Index.

Here is what I included (community/ is the directory where I have my vBulletin):
PHP Code:

        if ($vbulletin->cron <= TIMENOW)
        {
            
$cronimage '<img src="' create_full_url('community/cron.php?' $vbulletin->session->vars['sessionurl'] . 'rand=' .  TIMENOW) . '" alt="" width="0" height="0" border="0" style="display: none;" />';
        }
        else
        {
            
$cronimage '';
        }
        echo 
$cronimage

It outputs correctly, but I just want to double check that this is the proper way of "inducing" Scheduled Tasks to run from an external page.

Thanks again!

kh99 12-16-2014 05:11 PM

It seems right, but to be honest I don't know for sure.

ozzy47 12-16-2014 09:37 PM

Yeah it looks ok to me also. But I don't understand, what is it you need to run so often?

Mko 12-16-2014 10:19 PM

Quote:

Originally Posted by ozzy47 (Post 2527585)
Yeah it looks ok to me also. But I don't understand, what is it you need to run so often?

I was initially going to call the API to fetch the amount of players logged in, but I opted to do it using a table in my db and not using a Scheduled Task.

Anyways, good to see that the code I added in the header looks OK. Thanks for all the help! :)

ozzy47 12-16-2014 10:23 PM

Gotcha. Glad to see you found a way to do what you wanted though. :)


All times are GMT. The time now is 07:31 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01134 seconds
  • Memory Usage 1,746KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete