folsom/src/main/java/com/spotify/folsom/client/ascii/DefaultAsciiMemcacheClient.java [299:309]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    final int size = keys.size();
    if (size == 0) {
      return CompletableFuture.completedFuture(Collections.<GetResult<V>>emptyList());
    }

    final List<List<byte[]>> keyPartition =
        Lists.partition(keys, MemcacheEncoder.MAX_MULTIGET_SIZE);
    final List<CompletionStage<List<GetResult<byte[]>>>> futureList =
        new ArrayList<>(keyPartition.size());

    for (final List<byte[]> part : keyPartition) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



folsom/src/main/java/com/spotify/folsom/client/binary/DefaultBinaryMemcacheClient.java [261:271]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    final int size = keys.size();
    if (size == 0) {
      return CompletableFuture.completedFuture(Collections.<GetResult<V>>emptyList());
    }

    final List<List<byte[]>> keyPartition =
        Lists.partition(keys, MemcacheEncoder.MAX_MULTIGET_SIZE);
    final List<CompletionStage<List<GetResult<byte[]>>>> futureList =
        new ArrayList<>(keyPartition.size());

    for (final List<byte[]> part : keyPartition) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



