Huawei
H13-723_V2.0 · Question #27
Suppose there is an application, there are 10 tables, each table has tens of millions of records, and the number of fields is about 20. Now Redis is used to cache the data of these 10 tables. For…
The correct answer is B. Using a hash structure, each row record of each table uses a hash KEY, the field of the hash KEY. See the full explanation below for the reasoning.
Question
Suppose there is an application, there are 10 tables, each table has tens of millions of records, and the number of fields is about 20. Now Redis is used to cache the data of these 10 tables. For the design of the data structure, which of the following is the best design?
Options
- AA hash structure is adopted, and a table uses a hash KEY, and a row in the table records a field
- BUsing a hash structure, each row record of each table uses a hash KEY, the field of the hash KEY
- CUsing string structure, each field in each row of each table uses a KEY.
- DUsing string structure, each row of each table uses a KEY, and value is the concatenated value of
How the community answered
(56 responses)- A5% (3)
- B77% (43)
- C4% (2)
- D14% (8)
Community Discussion
No community discussion yet for this question.