-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DB optimization #112
base: master
Are you sure you want to change the base?
DB optimization #112
Changes from all commits
fa96034
c1083ac
27c833c
cb26656
c417d69
7dbe899
df210be
dc18d4b
ab50dc0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--require spec_helper |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
class BusesService < ApplicationRecord | ||
belongs_to :bus | ||
belongs_to :service | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
class ImportTripsService | ||
def self.call(filename) | ||
json = JSON.parse(File.read(filename)) | ||
|
||
ActiveRecord::Base.transaction do | ||
City.delete_all | ||
Bus.delete_all | ||
Service.delete_all | ||
Trip.delete_all | ||
ActiveRecord::Base.connection.execute('delete from buses_services;') | ||
|
||
cities = {} | ||
services = {} | ||
buses = {} | ||
buses_services = {} | ||
|
||
trips = [] | ||
|
||
json.each do |trip| | ||
from = cities[trip['from']] ||= City.new(name: trip['from']) | ||
to = cities[trip['to']] ||= City.new(name: trip['to']) | ||
|
||
bus = buses[trip['bus']['number']] ||= Bus.new(number: trip['bus']['number'], model: trip['bus']['model']) | ||
|
||
trip['bus']['services'].each do |service| | ||
bus_service = services[service] ||= Service.new(name: service) | ||
buses_services[[bus, bus_service]] ||= BusesService.new(bus: bus, service: bus_service) | ||
end | ||
|
||
trips << Trip.new( | ||
from: from, | ||
to: to, | ||
bus: bus, | ||
start_time: trip['start_time'], | ||
duration_minutes: trip['duration_minutes'], | ||
price_cents: trip['price_cents'], | ||
) | ||
end | ||
|
||
City.import cities.values | ||
Bus.import buses.values | ||
Service.import services.values | ||
BusesService.import buses_services.values | ||
Trip.import trips | ||
|
||
cities, services, buses, trips = nil | ||
end | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,8 @@ | |
</head> | ||
|
||
<body> | ||
<%= link_to "Database Analyzer", pg_hero_path, target: :blank %> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
<br><br> | ||
<%= yield %> | ||
</body> | ||
</html> |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,25 @@ | |
<%= "Автобусы #{@from.name} – #{@to.name}" %> | ||
</h1> | ||
<h2> | ||
<%= "В расписании #{@trips.count} рейсов" %> | ||
<%= "В расписании #{@trips.length} рейсов" %> | ||
</h2> | ||
|
||
<% @trips.each do |trip| %> | ||
<ul> | ||
<%= render "trip", trip: trip %> | ||
<li><%= "Отправление: #{trip.start_time}" %></li> | ||
<li><%= "Прибытие: #{(Time.parse(trip.start_time) + trip.duration_minutes.minutes).strftime('%H:%M')}" %></li> | ||
<li><%= "В пути: #{trip.duration_minutes / 60}ч. #{trip.duration_minutes % 60}мин." %></li> | ||
<li><%= "Цена: #{trip.price_cents / 100}р. #{trip.price_cents % 100}коп." %></li> | ||
<li><%= "Автобус: #{trip.bus.model} №#{trip.bus.number}" %></li> | ||
|
||
<% if trip.bus.services.present? %> | ||
<%= render "services", services: trip.bus.services %> | ||
<li>Сервисы в автобусе:</li> | ||
<ul> | ||
<% trip.bus.services.each do |service| %> | ||
<li><%= "#{service.name}" %></li> | ||
<% end %> | ||
</ul> | ||
<% end %> | ||
</ul> | ||
<%= render "delimiter" %> | ||
==================================================== | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FYI: есть API для рендеринга коллекций, там можно даже указать шаблон spacer параметром. Это позволяет находить компромисс между удобством разбиения на partial’ы и не настолько медленно работает как наивный рендеринг в цикле. |
||
<% end %> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ chdir APP_ROOT do | |
system('bundle check') || system!('bundle install') | ||
|
||
# Install JavaScript dependencies if using Yarn | ||
# system('bin/yarn') | ||
system('bin/yarn') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. у нас тут нет же никакого js |
||
|
||
# puts "\n== Copying sample files ==" | ||
# unless File.exist?('config/database.yml') | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
странновато (просто лишняя строчка?)