blob: 4a0e0226541af3eea396d74d2971268f13dea126 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require 'benchmark/base'
$LOAD_PATH.unshift 'lib'
module FastestGettext
def set_domain(folder,domain,locale)
@data = {}
require 'fast_gettext/vendor/mofile'
FastGettext::GetText::MOFile.open(File.join(folder,locale,'LC_MESSAGES',"#{domain}.mo"), "UTF-8").each{|k,v|@data[k]=v}
end
def _(word)
@data[word]
end
end
include FastestGettext
set_domain(locale_folder('test'),'test','de')
puts "Ideal: (primitive Hash lookup)"
results_test{_('car') == 'Auto'}
#i cannot add the large file, since its an internal applications mo file
set_domain(locale_folder('large'),'large','de')
results_large
|