Problemy z wydajnością renderowania w tabelach danych

Próbuję renderować około 2500 wierszy z wyłączonym sortowaniem i „bDeferRender”: true. Chrom zajmuje około 40 sekund (wersja 27). Używam Datatables 1.9 i jquery 2. Jakieś sugestie?

Tabela danychsettings dla mojego datatable:

var oSettings = {
    'bDestroy': true,
    "bInfo": true,
    "bProcessing": true,
    "bDeferRender": true,
    'iDisplayLength': 10,
    'sPaginationType': 'full_numbers',
    'sDom': '<"top"i> T<"clear">lfrtip',
    'sPageButtonActive': "paginate_active",
    'sPageButtonStaticDisabled': "paginate_button",
    "oLanguage": {
        "sSearch": "Futher Filter Search results:",
        "sInfo": "Got a total of _TOTAL_ results to show (_START_ to _END_)",
        "sLengthMenu": 'Show <select>' +
                '<option value="5">5</option>' +
                '<option value="10">10</option>' +
                '<option value="15">15</option>' +
                '<option value="20">20</option>' +
                '<option value="25">25</option>' +
                '</select> results'
    },
    "bSort": false
};

questionAnswers(1)

yourAnswerToTheQuestion