Skip to content
This repository was archived by the owner on Jan 3, 2024. It is now read-only.

Commit 753fb9b

Browse files
committed
Fixes performance problem decoding large arrays
When an array has many items (a couple thousand) it may take seconds to decode. Replace the slow regex with the standard array decoder from the 0.19 version of the PG gem.
1 parent be1bef6 commit 753fb9b

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

activerecord-postgres-array.gemspec

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ Gem::Specification.new do |s|
1313
s.rubygems_version = %q{1.3.7}
1414
s.summary = s.description
1515

16-
s.add_dependency "activerecord"
16+
# The gem is no longer required after Rails 3.2
17+
s.add_dependency "activerecord", "<4.0"
18+
s.add_dependency "pg", '>= 0.19'
1719
s.add_development_dependency 'rake'
1820
s.add_development_dependency 'rspec', '~> 2.12.0'
19-
s.add_development_dependency 'pg'
2021
s.add_development_dependency 'activerecord-postgres-hstore'
2122
s.add_development_dependency 'combustion', '~> 0.3.1'
2223
end

lib/activerecord-postgres-array/string.rb

+3-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,9 @@ def from_postgres_array(base_type = :string)
2020
if empty?
2121
[]
2222
else
23-
elements = match(/\{(.*)\}/m).captures.first.gsub(/\\"/, '$ESCAPED_DOUBLE_QUOTE$').split(/(?:,)(?=(?:[^"]|"[^"]*")*$)/m)
24-
elements = elements.map do |e|
25-
res = e.gsub('$ESCAPED_DOUBLE_QUOTE$', '"').gsub("\\\\", "\\").gsub(/^"/, '').gsub(/"$/, '').gsub("''", "'").strip
26-
res == 'NULL' ? nil : res
27-
end
23+
# elements = match(/\{(.*)\}/m).captures.first.gsub(/\\"/, '$ESCAPED_DOUBLE_QUOTE$').split(/(?:,)(?=(?:[^"]|"[^"]*")*$)/m)
24+
decoder = PG::TextDecoder::Array.new name: "#{base_type}[]", delimiter: ","
25+
elements = decoder.decode(self)
2826

2927
if base_type == :decimal
3028
elements.collect(&:to_d)

spec/string_ext_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@
9999
end
100100

101101
it 'correctly handles backslashes' do
102-
'\'{"\\\\","\\""}\''.from_postgres_array.should == ["\\","\""]
102+
'{"\\\\","\\""}'.from_postgres_array.should == ["\\","\""]
103103
end
104104

105105
it 'correctly handles multi line content' do
106106
"{A\nB\nC,X\r\nY\r\nZ}".from_postgres_array.should == ["A\nB\nC", "X\r\nY\r\nZ"]
107107
end
108108
end
109-
end
109+
end

0 commit comments

Comments
 (0)