IT Log

Record various IT issues and difficulties.

Tag: Data Serialization/Deserialization


  • The SQL Query Time and Java API Call Have a Significant Difference

    To address the discrepancy between SQL query time and Java API call time, a structured approach was taken, considering various potential causes and systematically investigating each component involved. Understanding Components: The SQL query execution time is measured directly in the database, while the Java API call encompasses network latency, data serialization/deserialization, server-side processing, and more.…