如何根据数据表的分页限制我的数据库请求?

How can I limit my database request according to the pagination of the datatable?

我正在从我的数据库加载数据,这是一个非常大的数据量。为了获得真正快速的性能,我限制了数据(使用我的 parts 函数)

Controller.php

$table = $this->em->getRepository($EntityName)->parts(10);
$table_json = $serializer->serialize($table, 'json');
$table_array = json_decode($table_json);
// here I am adding some complex data to the array from other database tables and then I encode the array again for the datatable
$data = json_encode($table_array);

page.html.twig:

  var table = $('.table').DataTable({
    "lengthMenu": [[10, 25, 50,100, -1], [10, 25, 50,100, "All"]],
    "pageLength": 10,
    "scrollX": true,
    "data":{{ output.data|raw }},

零件功能:

 public function parts($limit) {
      return $this->createQueryBuilder('documents')
      ->setMaxResults($limit)
      ->getQuery()
      ->execute();
    }

我想知道的是,是否有可能根据分页我从数据库中仅加载 10 条记录?因此,分页 1 到 10 将加载前 10 条记录,而 11 到 20 将加载接下来的 10 条记录。我进行了很多研究,但没有找到适合我的特定代码的解决方案。这是因为从数据库加载后,我需要在将记录显示在数据表中之前对记录进行一些处理。

public function parts($offset, $limit) {
    return $this->createQueryBuilder('documents')
      ->setFirstResult($offset)
      ->setMaxResults($limit)
      ->getQuery()
      ->getResult();
}

但我建议使用 KnpPaginatorBundle