Make WordPress Core

Changes between Initial Version and Version 16 of Ticket #55069


Ignore:
Timestamp:
02/13/2022 03:12:30 PM (3 years ago)
Author:
SergeyBiryukov
Comment:

Just renaming the ticket as the focus has moved to other parts of core as well.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #55069

    • Property Status changed from new to accepted
    • Property Focuses performance added
    • Property Component changed from I18N to General
    • Property Summary changed from Optimize POMO_FileReader.read_all() using stream_get_contents() to Optimize fread() calls using file_get_contents() or stream_get_contents()
    • Property Owner set to SergeyBiryukov
    • Property Milestone changed from Awaiting Review to 6.0
    • Property Keywords has-patch added
  • Ticket #55069 – Description

    initial v16  
    1 The method uses fread() with 4 kB blocks, but stream_get_contents() would be much faster.
     1The POMO_FileReader::read_all() method uses fread() with 4 kB blocks, but stream_get_contents() would be much faster.