Changes between Version 5 and Version 6 of CiviCRM Module HSCIC Importer Planning


Ignore:
Timestamp:
11/15/13 11:54:51 (11 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CiviCRM Module HSCIC Importer Planning

    v5 v6  
    150150=== Usage of Drupal cron
    151151
    152 If we use the Drupal 'easy cron' then all the processing is done in within a normal request for a Drupal page.  This could lead to a user inexplicably to have to wait a long time for a page because we're doing the processing in the background.
     152If we use the Drupal 'easy cron' then all the processing is done within a normal request for a Drupal page.  This could lead to a user having to wait an inexplicably long time for a page because we're doing the processing in the background.
    153153
    154 We could split the task ofver several requests.  Either manually or using [[https://api.drupal.org/api/examples/queue_example!queue_example.module/group/queue_example/7|queues]].  However, the actual act of downloading the file could take a long time on its own.
     154We could split the task over several requests.  Either manually or using [[https://api.drupal.org/api/examples/queue_example!queue_example.module/group/queue_example/7|queues]].  However, the actual act of downloading the file could take a long time on its own.
    155155
    156156We could therefore use real cron to download the file.  Or just use real cron to do the whole process.