Mysql
 sql >> Baza danych >  >> RDS >> Mysql

informacje o długim odpytywaniu z mysql nie działają

Zmień kod w pliku poll.php na następujący:

<?php
include 'db.php';
$old_msg_id = $_GET['old_msg_id']; 
$result = mysql_query("SELECT id FROM chatpoll ORDER BY id DESC LIMIT 1");
while($row = mysql_fetch_array($result))
{
    $last_msg_id = $row['id']; 
}
while($last_msg_id <= $old_msg_id)
{
    usleep(1000);
    clearstatcache();
    $result = mysql_query("SELECT id FROM chatpoll ORDER BY id DESC LIMIT 1");
    while($row = mysql_fetch_array($result))
    {
        $last_msg_id = $row['id'];
    }
}
$response = array();
$response['msg'] = 'new';
$response['old_msg_id'] = $last_msg_id;
echo json_encode($response);
?>



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Instrukcja SQL Select z WHERE, AND, OR

  2. Co zwraca pomyślne DELETE MySQL? Jak sprawdzić, czy DELETE powiodło się?

  3. Funkcja isset() zwraca wartość true, nawet jeśli pozycja nie jest ustawiona

  4. Wstaw MySQL tam, gdzie nie istnieje / jeśli nie istnieje

  5. Przestrzeń nazw System.Data.SqlClient dla MySQL?