ceph rgw list_object原理分析太难看懂了
int list_objects(int64_t max,
vector *result,
mapbool > *common_prefixes,
bool *is_truncated) {
if (params.allow_unordered) {
return list_objects_unordered(max, result, common_prefixes,
is_truncated);
} else {
return list_objects_ordered(max, result, common_prefixes,
is_truncated);
}
想知道: