mirror of
https://github.com/transmission/transmission
synced 2024-12-22 07:42:37 +00:00
perf: use small::unordered_map in tr_torrent::primary_mime_type() (#5722)
This commit is contained in:
parent
7c7771a12b
commit
e68b76bc14
1 changed files with 3 additions and 2 deletions
|
@ -13,7 +13,6 @@
|
|||
#include <sstream>
|
||||
#include <string>
|
||||
#include <string_view>
|
||||
#include <unordered_map>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
|
@ -27,6 +26,8 @@
|
|||
#include <fmt/chrono.h>
|
||||
#include <fmt/core.h>
|
||||
|
||||
#include <small/map.hpp>
|
||||
|
||||
#include "libtransmission/transmission.h"
|
||||
|
||||
#include "libtransmission/announcer.h"
|
||||
|
@ -2248,7 +2249,7 @@ std::string_view tr_torrent::primary_mime_type() const
|
|||
// count up how many bytes there are for each mime-type in the torrent
|
||||
// NB: get_mime_type_for_filename() always returns the same ptr for a
|
||||
// mime_type, so its raw pointer can be used as a key.
|
||||
auto size_per_mime_type = std::unordered_map<std::string_view, size_t>{};
|
||||
auto size_per_mime_type = small::unordered_map<std::string_view, size_t, 256U>{};
|
||||
for (tr_file_index_t i = 0, n = this->file_count(); i < n; ++i)
|
||||
{
|
||||
auto const mime_type = tr_get_mime_type_for_filename(this->file_subpath(i));
|
||||
|
|
Loading…
Reference in a new issue