6ec53f5d48
Every project page displays a navigation menu that in turn displays the number of open issues and merge requests. This means that for every project page we run two COUNT(*) queries, each taking up roughly 30 milliseconds on GitLab.com. By caching these numbers and refreshing them whenever necessary we can reduce loading times of all these pages by up to roughly 60 milliseconds. The number of open issues does not include confidential issues. This is a trade-off to keep the code simple and to ensure refreshing the data only needs 2 COUNT(*) queries instead of 3. A downside is that if a project only has 5 confidential issues the counter will be set to 0. Because we now have 3 similar counting service classes the code previously used in Projects::ForksCountService has mostly been moved to Projects::CountService, which in turn is reused by the various service classes. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/36622
73 lines
1.9 KiB
Ruby
73 lines
1.9 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe Projects::CountService do
|
|
let(:project) { build(:project, id: 1) }
|
|
let(:service) { described_class.new(project) }
|
|
|
|
describe '#relation_for_count' do
|
|
it 'raises NotImplementedError' do
|
|
expect { service.relation_for_count }.to raise_error(NotImplementedError)
|
|
end
|
|
end
|
|
|
|
describe '#count' do
|
|
before do
|
|
allow(service).to receive(:cache_key_name).and_return('count_service')
|
|
end
|
|
|
|
it 'returns the number of rows' do
|
|
allow(service).to receive(:uncached_count).and_return(1)
|
|
|
|
expect(service.count).to eq(1)
|
|
end
|
|
|
|
it 'caches the number of rows', :use_clean_rails_memory_store_caching do
|
|
expect(service).to receive(:uncached_count).once.and_return(1)
|
|
|
|
2.times do
|
|
expect(service.count).to eq(1)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#refresh_cache', :use_clean_rails_memory_store_caching do
|
|
before do
|
|
allow(service).to receive(:cache_key_name).and_return('count_service')
|
|
end
|
|
|
|
it 'refreshes the cache' do
|
|
expect(service).to receive(:uncached_count).once.and_return(1)
|
|
|
|
service.refresh_cache
|
|
|
|
expect(service.count).to eq(1)
|
|
end
|
|
end
|
|
|
|
describe '#delete_cache', :use_clean_rails_memory_store_caching do
|
|
before do
|
|
allow(service).to receive(:cache_key_name).and_return('count_service')
|
|
end
|
|
|
|
it 'removes the cache' do
|
|
expect(service).to receive(:uncached_count).twice.and_return(1)
|
|
|
|
service.count
|
|
service.delete_cache
|
|
service.count
|
|
end
|
|
end
|
|
|
|
describe '#cache_key_name' do
|
|
it 'raises NotImplementedError' do
|
|
expect { service.cache_key_name }.to raise_error(NotImplementedError)
|
|
end
|
|
end
|
|
|
|
describe '#cache_key' do
|
|
it 'returns the cache key as an Array' do
|
|
allow(service).to receive(:cache_key_name).and_return('count_service')
|
|
expect(service.cache_key).to eq(['projects', 1, 'count_service'])
|
|
end
|
|
end
|
|
end
|