Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

Example: Generate Image Results Page Of 30 Thumbnails

Sumit Rawal answered on May 20, 2023 Popularity 1/10 Helpfulness 1/10

Contents


More Related Answers

  • How to add a thumbnail to your website
  • add featured image
  • generateThumbnailRepresentations
  • minio thumbnail automatic generate

  • Example: Generate Image Results Page Of 30 Thumbnails

    0

    The is the example given in the video. Two design alternatives are used as design thought experiments.

    Design 1 - Serial

    Read images serially. Do a disk seek. Read a 256K image and then go on to the next image.

    Performance: 30 seeks * 10 ms/seek + 30 * 256K / 30 MB /s = 560ms

    Design 2 - Parallel

    Issue reads in parallel.

    Performance: 10 ms/seek + 256K read / 30 MB/s = 18ms

    There will be variance from the disk reads, so the more likely time is 30-60ms  

    Popularity 1/10 Helpfulness 1/10 Language typescript
    Source: Grepper
    Link to this answer
    Share Copy Link
    Contributed on May 20 2023
    Sumit Rawal
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.