обрабатывать несколько запросов доступа к файлу JSON - PullRequest
0 голосов
/ 26 октября 2018

У меня есть файл json в тексте с примерами данных

{"msisdn":"xxxxxxxxxx","productID":"YYYYYYYY","subdate":"2018-09-28 16:30:35","Status":"1"}
{"msisdn":"xxxxxxxxxx","productID":"YYYYYYYY","subdate":"2018-09-28 16:30:35","Status":"1"}

, и у меня есть php-код, который проверяет файл json на наличие msisdn

class JSONObject implements JsonSerializable
{
    public function __construct($json = false)
    {
        if ($json)
            $this->set(json_decode($json, true));
    }
    public function set($data)
    {
        foreach ($data AS $key => $value) {
            if (is_array($value)) {
                $sub = new JSONObject;
                $sub->set($value);
                $value = $sub;
            }
            $this->{$key} = $value;
        }
    }
    public function jsonSerialize()
    {
        return (object) get_object_vars($this);
    }
}

function checkmsisdnallreadyexists($file,$msisdn)
{
    if (is_file($file)) {
         if (($handle = fopen($file, 'r'))) {
            while (!feof($handle)) {
                $line          = trim(fgets($handle));
                 $jsonString    = json_encode(json_decode($line));
                // Here's the sweetness.
                //$class = new JSONObject($jsonString);
                $class         = new JSONObject($jsonString);
                if($class->msisdn == $msisdn)
                {
                    $date1=date_create($class->subdate);
                    $date2=date_create(date('Y-m-d H:i:s'));
                    $diff=date_diff($date1,$date2);
                    if($diff->format('%a') < 31)
                    {
                        fclose($handle);
                        return true;
                    }
                }
            }
            fclose($handle);
         }
    }
    return false;
}

Сначала все работает нормальноно когда в моем файле json более 30 000 записей, у нас истекает время чтения.так как у нас на моем сервере огромный запрос около 200 тыс. запросов в час, что приводит к эффективности всего процесса.

Может ли кто-нибудь предложить решение или альтернативный метод?

Примечание: я могу 'использовать базу данных здесь

1 Ответ

0 голосов
/ 26 октября 2018

Вы можете использовать file() вместо fopen() and fclose()

function checkmsisdnallreadyexists($msisdn){ 
  $file_array = file('give file path',FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); 
  foreach($file_array as $arr){ 
      $msisdn_array = json_decode($arr,true); 
      $msisdn_value = $msisdn_array['msisdn']; 
      if($msisdn_value == $msisdn) { 
         $date1=date_create($msisdn_array['subdate']); 
         $date2=date_create(date('Y-m-d H:i:s')); 
         $diff=date_diff($date1,$date2); 
         if($diff->format('%a') < 31) { 
             return true; 
         } 
      } 
   } 
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...