SELECT 
  product_id, 
  short_description, 
  full_description 
FROM 
  cscart_product_descriptions 
WHERE 
  product_id IN (107, 109, 91, 92) 
  AND lang_code = 'en'

Query time 0.00034

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_descriptions",
          "access_type": "range",
          "possible_keys": ["PRIMARY", "product_id"],
          "key": "product_id",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "rows": 4,
          "filtered": 100,
          "index_condition": "cscart_product_descriptions.product_id in (107,109,91,92)",
          "attached_condition": "cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description
91 <p>43 mm watch with stainless steel case, Montblanc Calibre MB R200, monopusher chronograph with automatic winding, anthracite-coloured dial with applique hour circle, date display, second time zone with day/night display, chronograph counters with rotating discs.</p>
92 <p>42 mm stainless steel watch with black dial, red-gold plated hands and numerals, automatic movement, date display, black alligator-skin strap</p>
107 <p>Platinum-plated money clip with black onyx inlay</p>
109 <p>Stainless steel key ring with brown calf leather</p>