enju_leaf 1.1.0.rc15 → 1.1.0.rc16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +2 -2
- data/app/assets/javascripts/mobile.js +1 -1
- data/app/assets/stylesheets/mobile.css +1 -1
- data/app/controllers/my_accounts_controller.rb +5 -5
- data/app/controllers/page_controller.rb +10 -2
- data/app/models/profile.rb +15 -5
- data/app/models/user_export_file.rb +1 -1
- data/app/models/user_import_file.rb +2 -2
- data/app/views/my_accounts/_edit_credential.html.erb +10 -0
- data/app/views/my_accounts/edit.html.erb +2 -4
- data/app/views/page/_header.html.erb +3 -3
- data/app/views/page/_menu.html.erb +3 -0
- data/app/views/page/configuration.html.erb +3 -0
- data/app/views/page/opensearch.xml.builder +1 -1
- data/app/views/page/system_information.html.erb +23 -0
- data/app/views/profiles/_edit_credential.html.erb +10 -0
- data/app/views/profiles/edit.html.erb +3 -4
- data/app/views/profiles/index.html.erb +4 -4
- data/app/views/profiles/new.html.erb +10 -0
- data/config/locales/translation_en.yml +3 -0
- data/config/locales/translation_ja.yml +3 -0
- data/config/routes.rb +1 -0
- data/db/migrate/20140524074813_create_user_import_file_transitions.rb +5 -1
- data/db/migrate/20140709113905_create_user_export_file_transitions.rb +5 -1
- data/db/migrate/20141003181336_add_full_name_transcription_to_profile.rb +5 -0
- data/db/migrate/20141003182825_add_date_of_birth_to_profile.rb +5 -0
- data/lib/enju_leaf/controller.rb +4 -4
- data/lib/enju_leaf/helper.rb +7 -0
- data/lib/enju_leaf/version.rb +1 -1
- data/lib/enju_leaf.rb +0 -48
- data/lib/generators/enju_leaf/quick_install/quick_install_generator.rb +1 -1
- data/lib/generators/enju_leaf/setup/setup_generator.rb +9 -0
- data/lib/generators/enju_leaf/setup/templates/Procfile +1 -1
- data/lib/tasks/enju_leaf_tasks.rake +6 -0
- data/lib/tasks/profile.rb +1 -1
- data/spec/controllers/page_controller_spec.rb +15 -0
- data/spec/dummy/config/database.yml +23 -18
- data/spec/dummy/db/migrate/001_create_agents.rb +0 -2
- data/spec/dummy/db/migrate/005_create_manifestations.rb +1 -2
- data/spec/dummy/db/migrate/006_create_items.rb +0 -2
- data/spec/dummy/db/migrate/035_create_reserves.rb +0 -1
- data/spec/dummy/db/migrate/133_create_agent_merges.rb +15 -0
- data/spec/dummy/db/migrate/134_create_agent_merge_lists.rb +13 -0
- data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +0 -1
- data/spec/dummy/db/migrate/20081212151614_create_bookmark_stats.rb +0 -3
- data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +0 -1
- data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +0 -1
- data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +0 -1
- data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +0 -4
- data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +0 -1
- data/spec/dummy/db/migrate/20140518050147_create_reserve_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140524135607_create_bookmark_stat_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140529014410_create_item_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
- data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
- data/spec/dummy/db/migrate/{20140810061942_add_user_id_to_stat.rb → 20140810061942_add_user_id_to_user_checkout_stat.rb} +1 -1
- data/spec/dummy/db/migrate/20140813182425_add_publication_place_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20140822114527_add_error_message_to_resource_import_result.rb +5 -0
- data/spec/dummy/db/migrate/20140823083524_add_extent_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20141014065831_add_shelf_id_to_checkout.rb +6 -0
- data/spec/dummy/db/schema.rb +674 -663
- data/spec/fixtures/agent_import_results.yml +0 -3
- data/spec/fixtures/agents.yml +0 -12
- data/spec/fixtures/checked_items.yml +4 -4
- data/spec/fixtures/checkouts.yml +12 -12
- data/spec/fixtures/manifestation_checkout_stats.yml +0 -3
- data/spec/fixtures/manifestation_reserve_stats.yml +0 -3
- data/spec/fixtures/manifestations.yml +114 -114
- data/spec/fixtures/reserves.yml +17 -17
- data/spec/fixtures/user_checkout_stats.yml +0 -3
- data/spec/fixtures/user_reserve_stats.yml +0 -3
- data/spec/fixtures/users.yml +1 -1
- data/spec/spec_helper.rb +2 -0
- data/vendor/assets/javascripts/{jquery.mobile-1.4.3.js → jquery.mobile-1.4.4.js} +191 -116
- data/vendor/assets/stylesheets/{jquery.mobile-1.4.3.css → jquery.mobile-1.4.4.css} +10 -2
- metadata +79 -264
- data/app/models/local_patron.rb +0 -27
- data/lib/enju_leaf/bookmark_url.rb +0 -45
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20111020063828_remove_dsbl_from_library_group.rb +0 -11
- data/spec/dummy/db/migrate/20130303104849_add_state_index_to_reserve.rb +0 -5
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/private/system/user_import_files/user_imports/980/190/963/original/user_delete_file.tsv +0 -4
- data/spec/dummy/private/system/user_import_files/user_imports/980/190/963/original/user_import_file_sample.tsv +0 -7
- data/spec/dummy/private/system/user_import_files/user_imports/980/190/963/original/user_update_file.tsv +0 -4
- data/spec/dummy/private/system/user_import_files/user_imports/980/190/964/original/user_delete_file.tsv +0 -4
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140815-3963-1s1td26.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140815-69229-i0rcty.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140816-21120-1w731r8.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140818-59118-14fm7df.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140818-59989-vmovk5.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140818-75062-kpzjyb.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140818-75773-1lhgyub.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140818-75927-j8wteq.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140820-9103-mfcugd.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140822-13160-wz7o56.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140824-39018-fw3fdj.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140828-69043-tbwoqv.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140915-22971-1jmyywh.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140915-23153-j4x3ru.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140915-67244-1uo8pkb.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-80298-14af9pc.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-80450-1qhv5cf.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-80529-1hahtrn.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-80725-tqmhnv.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-81018-wl1hgj.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-81246-wll5s.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-81371-8uz50r.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-84122-1u96hw6.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140926-7716-bbs13d.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141002-57000-yu6qop.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141002-57206-2j8sg2.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141002-57328-p8lryh.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141002-57609-1j3dd67.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141003-78097-dw5i2k.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140711-28652-1dj3e98.txt +0 -148
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140711-29117-13jb6ol.txt +0 -148
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140721-65743-1tnagd4.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140815-3963-1kk8o87.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140815-69229-188nwub.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140816-21120-twzfb6.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140818-59118-1lhrtka.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140818-59989-1prz707.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140818-75062-10bxh78.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140818-75773-ekgeho.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140818-75927-uay97k.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140820-9103-tuuox.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140822-13160-17b5dbh.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140824-39018-o12xa4.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140915-22971-d4ul8o.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140915-23153-1qmzqi6.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140915-67244-1ps1qsi.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-80298-121rh7h.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-80450-wdetsg.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-80529-lmet02.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-80725-1l6tliy.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-81018-azm74f.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-81246-1rjpksn.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-81371-aroaof.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-84122-7d6kls.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140926-7716-1nap0l.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141002-57000-3nb1bj.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141002-57206-197ca0p.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141002-57328-1kra77f.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141002-57609-iymry0.txt +0 -8
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141003-78097-1ocngi2.txt +0 -8
- data/spec/dummy/solr/conf/admin-extra.html +0 -31
- data/spec/dummy/solr/conf/elevate.xml +0 -36
- data/spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt +0 -246
- data/spec/dummy/solr/conf/protwords.txt +0 -21
- data/spec/dummy/solr/conf/schema.xml +0 -255
- data/spec/dummy/solr/conf/scripts.conf +0 -24
- data/spec/dummy/solr/conf/solrconfig.xml +0 -667
- data/spec/dummy/solr/conf/spellings.txt +0 -2
- data/spec/dummy/solr/conf/stopwords.txt +0 -58
- data/spec/dummy/solr/conf/synonyms.txt +0 -31
- data/spec/dummy/solr/default/data/index/_7b.fdt +0 -0
- data/spec/dummy/solr/default/data/index/_7b.fdx +0 -0
- data/spec/dummy/solr/default/data/index/_7b.fnm +0 -0
- data/spec/dummy/solr/default/data/index/_7b.nvd +0 -0
- data/spec/dummy/solr/default/data/index/_7b.nvm +0 -0
- data/spec/dummy/solr/default/data/index/_7b.si +0 -0
- data/spec/dummy/solr/default/data/index/_7b_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/default/data/index/_7b_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/default/data/index/_7b_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/default/data/index/_7b_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/default/data/index/segments.gen +0 -0
- data/spec/dummy/solr/default/data/index/segments_ev +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000524 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000525 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000526 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000527 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000528 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000529 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000530 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000531 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000532 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000533 +0 -0
- data/spec/dummy/solr/development/data/index/segments.gen +0 -0
- data/spec/dummy/solr/development/data/index/segments_1 +0 -0
- data/spec/dummy/solr/solr.xml +0 -8
- data/spec/dummy/solr/test/data/index/segments.gen +0 -0
- data/spec/dummy/solr/test/data/index/segments_1 +0 -0
- data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
- data/spec/dummy/tmp/cache/ACB/B20/manifestation_search_total +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/154f7b83f2da0e86effbe25f32135177 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1b984bdbd3204a51a82d0e01a1569e2d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3054c50144654f9c7e57bb0639a276e9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3bd7a263237ba366f64d938fe5303757 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/62899096da1a3e67660f3b88068be8c9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/65b2e4f67eab21b30217e29075f433b2 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/87d24a3f43f175d4d17babe9203c79a7 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d38d8658b30de1d068603968227680d4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/stdout +0 -1653
- data/spec/dummy/tmp/pids/redis-test.pid +0 -1
data/spec/dummy/tmp/cache/stdout
DELETED
@@ -1,1653 +0,0 @@
|
|
1
|
-
[32800] 02 Jul 11:08:36.050 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
2
|
-
[32800] 02 Jul 11:08:36.051 # Creating Server TCP listening socket *:9736: bind: Address already in use
|
3
|
-
[32878] 02 Jul 11:09:15.530 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
4
|
-
[32878] 02 Jul 11:09:15.531 # Creating Server TCP listening socket *:9736: bind: Address already in use
|
5
|
-
[32939] 02 Jul 11:10:18.063 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
6
|
-
[32939] 02 Jul 11:10:18.064 # Creating Server TCP listening socket *:9736: bind: Address already in use
|
7
|
-
[33211] 02 Jul 11:15:22.080 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
8
|
-
[33211] 02 Jul 11:15:22.081 # Creating Server TCP listening socket *:9736: bind: Address already in use
|
9
|
-
[33954] 02 Jul 11:25:24.593 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
10
|
-
[33954] 02 Jul 11:25:24.594 # Creating Server TCP listening socket *:9736: bind: Address already in use
|
11
|
-
[34479] 02 Jul 11:33:27.609 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
12
|
-
[34479] 02 Jul 11:33:27.610 # Creating Server TCP listening socket *:9736: bind: Address already in use
|
13
|
-
[44499] 02 Jul 16:30:51.636 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
14
|
-
_._
|
15
|
-
_.-``__ ''-._
|
16
|
-
_.-`` `. `_. ''-._ Redis 2.8.12 (00000000/0) 64 bit
|
17
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
18
|
-
( ' , .-` | `, ) Running in stand alone mode
|
19
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
20
|
-
| `-._ `._ / _.-' | PID: 44499
|
21
|
-
`-._ `-._ `-./ _.-' _.-'
|
22
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
23
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
24
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
25
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
26
|
-
| `-._`-._ _.-'_.-' |
|
27
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
28
|
-
`-._ `-.__.-' _.-'
|
29
|
-
`-._ _.-'
|
30
|
-
`-.__.-'
|
31
|
-
|
32
|
-
[44499] 02 Jul 16:30:51.646 # Server started, Redis version 2.8.12
|
33
|
-
[44499] 02 Jul 16:30:51.646 * The server is now ready to accept connections on port 9736
|
34
|
-
[44499] 02 Jul 16:30:52.644 - 0 clients connected (0 slaves), 952656 bytes in use
|
35
|
-
[44499] 02 Jul 16:30:57.686 - 0 clients connected (0 slaves), 952656 bytes in use
|
36
|
-
[44499] 02 Jul 16:31:02.734 - 0 clients connected (0 slaves), 952656 bytes in use
|
37
|
-
[44499] 02 Jul 16:31:07.782 - 0 clients connected (0 slaves), 952656 bytes in use
|
38
|
-
[52509] 02 Jul 19:03:22.752 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
39
|
-
_._
|
40
|
-
_.-``__ ''-._
|
41
|
-
_.-`` `. `_. ''-._ Redis 2.8.12 (00000000/0) 64 bit
|
42
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
43
|
-
( ' , .-` | `, ) Running in stand alone mode
|
44
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
45
|
-
| `-._ `._ / _.-' | PID: 52509
|
46
|
-
`-._ `-._ `-./ _.-' _.-'
|
47
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
48
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
49
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
50
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
51
|
-
| `-._`-._ _.-'_.-' |
|
52
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
53
|
-
`-._ `-.__.-' _.-'
|
54
|
-
`-._ _.-'
|
55
|
-
`-.__.-'
|
56
|
-
|
57
|
-
[52509] 02 Jul 19:03:22.761 # Server started, Redis version 2.8.12
|
58
|
-
[52509] 02 Jul 19:03:22.764 * The server is now ready to accept connections on port 9736
|
59
|
-
[52509] 02 Jul 19:03:23.758 - 0 clients connected (0 slaves), 952656 bytes in use
|
60
|
-
[52509] 02 Jul 19:03:28.799 - 0 clients connected (0 slaves), 952656 bytes in use
|
61
|
-
[52509] 02 Jul 19:03:33.869 - 0 clients connected (0 slaves), 952656 bytes in use
|
62
|
-
[52509] 02 Jul 19:03:38.910 - 0 clients connected (0 slaves), 952656 bytes in use
|
63
|
-
[52509] 02 Jul 19:03:43.941 - 0 clients connected (0 slaves), 952656 bytes in use
|
64
|
-
[29437] 05 Jul 14:59:59.421 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
65
|
-
_._
|
66
|
-
_.-``__ ''-._
|
67
|
-
_.-`` `. `_. ''-._ Redis 2.8.12 (00000000/0) 64 bit
|
68
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
69
|
-
( ' , .-` | `, ) Running in stand alone mode
|
70
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
71
|
-
| `-._ `._ / _.-' | PID: 29437
|
72
|
-
`-._ `-._ `-./ _.-' _.-'
|
73
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
74
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
75
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
76
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
77
|
-
| `-._`-._ _.-'_.-' |
|
78
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
79
|
-
`-._ `-.__.-' _.-'
|
80
|
-
`-._ _.-'
|
81
|
-
`-.__.-'
|
82
|
-
|
83
|
-
[29437] 05 Jul 14:59:59.429 # Server started, Redis version 2.8.12
|
84
|
-
[29437] 05 Jul 14:59:59.429 * The server is now ready to accept connections on port 9736
|
85
|
-
[29437] 05 Jul 15:00:00.428 - 0 clients connected (0 slaves), 952656 bytes in use
|
86
|
-
[29437] 05 Jul 15:00:05.506 - 0 clients connected (0 slaves), 952656 bytes in use
|
87
|
-
[29437] 05 Jul 15:00:10.544 - 0 clients connected (0 slaves), 952656 bytes in use
|
88
|
-
[29437] 05 Jul 15:00:15.587 - 0 clients connected (0 slaves), 952656 bytes in use
|
89
|
-
[29437] 05 Jul 15:00:20.632 - 0 clients connected (0 slaves), 952656 bytes in use
|
90
|
-
[29437] 05 Jul 15:00:25.696 - 0 clients connected (0 slaves), 952656 bytes in use
|
91
|
-
[29437] 05 Jul 15:00:30.738 - 0 clients connected (0 slaves), 952656 bytes in use
|
92
|
-
[29437] 05 Jul 15:00:35.788 - 0 clients connected (0 slaves), 952656 bytes in use
|
93
|
-
[29437] 05 Jul 15:00:40.832 - 0 clients connected (0 slaves), 952656 bytes in use
|
94
|
-
[29437] 05 Jul 15:00:45.866 - 0 clients connected (0 slaves), 952656 bytes in use
|
95
|
-
[29437] 05 Jul 15:00:50.907 - 0 clients connected (0 slaves), 952656 bytes in use
|
96
|
-
[29437] 05 Jul 15:00:55.948 - 0 clients connected (0 slaves), 952656 bytes in use
|
97
|
-
[29551] 05 Jul 15:02:05.388 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
98
|
-
_._
|
99
|
-
_.-``__ ''-._
|
100
|
-
_.-`` `. `_. ''-._ Redis 2.8.12 (00000000/0) 64 bit
|
101
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
102
|
-
( ' , .-` | `, ) Running in stand alone mode
|
103
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
104
|
-
| `-._ `._ / _.-' | PID: 29551
|
105
|
-
`-._ `-._ `-./ _.-' _.-'
|
106
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
107
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
108
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
109
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
110
|
-
| `-._`-._ _.-'_.-' |
|
111
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
112
|
-
`-._ `-.__.-' _.-'
|
113
|
-
`-._ _.-'
|
114
|
-
`-.__.-'
|
115
|
-
|
116
|
-
[29551] 05 Jul 15:02:05.390 # Server started, Redis version 2.8.12
|
117
|
-
[29551] 05 Jul 15:02:05.390 * The server is now ready to accept connections on port 9736
|
118
|
-
[29551] 05 Jul 15:02:05.390 - 0 clients connected (0 slaves), 952656 bytes in use
|
119
|
-
[29551] 05 Jul 15:02:10.464 - 0 clients connected (0 slaves), 952656 bytes in use
|
120
|
-
[29551] 05 Jul 15:02:15.497 - 0 clients connected (0 slaves), 952656 bytes in use
|
121
|
-
[29551] 05 Jul 15:02:20.542 - 0 clients connected (0 slaves), 952656 bytes in use
|
122
|
-
[29551] 05 Jul 15:02:25.589 - 0 clients connected (0 slaves), 952656 bytes in use
|
123
|
-
[29551] 05 Jul 15:02:30.632 - 0 clients connected (0 slaves), 952656 bytes in use
|
124
|
-
[29551] 05 Jul 15:02:35.687 - 0 clients connected (0 slaves), 952656 bytes in use
|
125
|
-
[29551] 05 Jul 15:02:40.728 - 0 clients connected (0 slaves), 952656 bytes in use
|
126
|
-
[29551] 05 Jul 15:02:45.762 - 0 clients connected (0 slaves), 952656 bytes in use
|
127
|
-
[29551] 05 Jul 15:02:50.799 - 0 clients connected (0 slaves), 952656 bytes in use
|
128
|
-
[29551] 05 Jul 15:02:55.828 - 0 clients connected (0 slaves), 952656 bytes in use
|
129
|
-
[29551] 05 Jul 15:03:00.855 - 0 clients connected (0 slaves), 952656 bytes in use
|
130
|
-
[29659] 05 Jul 15:03:33.153 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
131
|
-
_._
|
132
|
-
_.-``__ ''-._
|
133
|
-
_.-`` `. `_. ''-._ Redis 2.8.12 (00000000/0) 64 bit
|
134
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
135
|
-
( ' , .-` | `, ) Running in stand alone mode
|
136
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
137
|
-
| `-._ `._ / _.-' | PID: 29659
|
138
|
-
`-._ `-._ `-./ _.-' _.-'
|
139
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
140
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
141
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
142
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
143
|
-
| `-._`-._ _.-'_.-' |
|
144
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
145
|
-
`-._ `-.__.-' _.-'
|
146
|
-
`-._ _.-'
|
147
|
-
`-.__.-'
|
148
|
-
|
149
|
-
[29659] 05 Jul 15:03:33.155 # Server started, Redis version 2.8.12
|
150
|
-
[29659] 05 Jul 15:03:33.155 * The server is now ready to accept connections on port 9736
|
151
|
-
[29659] 05 Jul 15:03:33.155 - 0 clients connected (0 slaves), 952656 bytes in use
|
152
|
-
[29659] 05 Jul 15:03:38.295 - 0 clients connected (0 slaves), 952656 bytes in use
|
153
|
-
[29659] 05 Jul 15:03:43.331 - 0 clients connected (0 slaves), 952656 bytes in use
|
154
|
-
[29659] 05 Jul 15:03:48.380 - 0 clients connected (0 slaves), 952656 bytes in use
|
155
|
-
[29659] 05 Jul 15:03:53.432 - 0 clients connected (0 slaves), 952656 bytes in use
|
156
|
-
[29659] 05 Jul 15:03:58.483 - 0 clients connected (0 slaves), 952656 bytes in use
|
157
|
-
[29659] 05 Jul 15:04:03.540 - 0 clients connected (0 slaves), 952656 bytes in use
|
158
|
-
[29659] 05 Jul 15:04:08.591 - 0 clients connected (0 slaves), 952656 bytes in use
|
159
|
-
[29659] 05 Jul 15:04:13.643 - 0 clients connected (0 slaves), 952656 bytes in use
|
160
|
-
[29659] 05 Jul 15:04:18.685 - 0 clients connected (0 slaves), 952656 bytes in use
|
161
|
-
[29659] 05 Jul 15:04:23.733 - 0 clients connected (0 slaves), 952656 bytes in use
|
162
|
-
[29659] 05 Jul 15:04:28.776 - 0 clients connected (0 slaves), 952656 bytes in use
|
163
|
-
[39883] 05 Jul 19:09:01.197 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
164
|
-
_._
|
165
|
-
_.-``__ ''-._
|
166
|
-
_.-`` `. `_. ''-._ Redis 2.8.12 (00000000/0) 64 bit
|
167
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
168
|
-
( ' , .-` | `, ) Running in stand alone mode
|
169
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
170
|
-
| `-._ `._ / _.-' | PID: 39883
|
171
|
-
`-._ `-._ `-./ _.-' _.-'
|
172
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
173
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
174
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
175
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
176
|
-
| `-._`-._ _.-'_.-' |
|
177
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
178
|
-
`-._ `-.__.-' _.-'
|
179
|
-
`-._ _.-'
|
180
|
-
`-.__.-'
|
181
|
-
|
182
|
-
[39883] 05 Jul 19:09:01.213 # Server started, Redis version 2.8.12
|
183
|
-
[39883] 05 Jul 19:09:01.217 * The server is now ready to accept connections on port 9736
|
184
|
-
[39883] 05 Jul 19:09:02.204 - 0 clients connected (0 slaves), 952656 bytes in use
|
185
|
-
[39883] 05 Jul 19:09:07.265 - 0 clients connected (0 slaves), 952656 bytes in use
|
186
|
-
[39883] 05 Jul 19:09:12.296 - 0 clients connected (0 slaves), 952656 bytes in use
|
187
|
-
[39883] 05 Jul 19:09:17.333 - 0 clients connected (0 slaves), 952656 bytes in use
|
188
|
-
[39883] 05 Jul 19:09:22.409 - 0 clients connected (0 slaves), 952656 bytes in use
|
189
|
-
[39883] 05 Jul 19:09:27.475 - 0 clients connected (0 slaves), 952656 bytes in use
|
190
|
-
[39883] 05 Jul 19:09:32.523 - 0 clients connected (0 slaves), 952656 bytes in use
|
191
|
-
[39883] 05 Jul 19:09:37.572 - 0 clients connected (0 slaves), 952656 bytes in use
|
192
|
-
[39883] 05 Jul 19:09:42.610 - 0 clients connected (0 slaves), 952656 bytes in use
|
193
|
-
[39883] 05 Jul 19:09:47.653 - 0 clients connected (0 slaves), 952656 bytes in use
|
194
|
-
[39883] 05 Jul 19:09:52.687 - 0 clients connected (0 slaves), 952656 bytes in use
|
195
|
-
[39883] 05 Jul 19:09:57.733 - 0 clients connected (0 slaves), 952656 bytes in use
|
196
|
-
[39883] 05 Jul 19:10:02.769 - 0 clients connected (0 slaves), 952656 bytes in use
|
197
|
-
[28572] 11 Jul 22:26:41.029 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
198
|
-
_._
|
199
|
-
_.-``__ ''-._
|
200
|
-
_.-`` `. `_. ''-._ Redis 2.8.12 (00000000/0) 64 bit
|
201
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
202
|
-
( ' , .-` | `, ) Running in stand alone mode
|
203
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
204
|
-
| `-._ `._ / _.-' | PID: 28572
|
205
|
-
`-._ `-._ `-./ _.-' _.-'
|
206
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
207
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
208
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
209
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
210
|
-
| `-._`-._ _.-'_.-' |
|
211
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
212
|
-
`-._ `-.__.-' _.-'
|
213
|
-
`-._ _.-'
|
214
|
-
`-.__.-'
|
215
|
-
|
216
|
-
[28572] 11 Jul 22:26:41.038 # Server started, Redis version 2.8.12
|
217
|
-
[28572] 11 Jul 22:26:41.038 * The server is now ready to accept connections on port 9736
|
218
|
-
[28572] 11 Jul 22:26:42.035 - 0 clients connected (0 slaves), 952656 bytes in use
|
219
|
-
[28572] 11 Jul 22:26:47.126 - 0 clients connected (0 slaves), 952656 bytes in use
|
220
|
-
[28572] 11 Jul 22:26:52.170 - 0 clients connected (0 slaves), 952656 bytes in use
|
221
|
-
[28572] 11 Jul 22:26:57.208 - 0 clients connected (0 slaves), 952656 bytes in use
|
222
|
-
[28657] 11 Jul 22:27:28.226 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
223
|
-
_._
|
224
|
-
_.-``__ ''-._
|
225
|
-
_.-`` `. `_. ''-._ Redis 2.8.12 (00000000/0) 64 bit
|
226
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
227
|
-
( ' , .-` | `, ) Running in stand alone mode
|
228
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
229
|
-
| `-._ `._ / _.-' | PID: 28657
|
230
|
-
`-._ `-._ `-./ _.-' _.-'
|
231
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
232
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
233
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
234
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
235
|
-
| `-._`-._ _.-'_.-' |
|
236
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
237
|
-
`-._ `-.__.-' _.-'
|
238
|
-
`-._ _.-'
|
239
|
-
`-.__.-'
|
240
|
-
|
241
|
-
[28657] 11 Jul 22:27:28.228 # Server started, Redis version 2.8.12
|
242
|
-
[28657] 11 Jul 22:27:28.228 * The server is now ready to accept connections on port 9736
|
243
|
-
[28657] 11 Jul 22:27:28.230 - 0 clients connected (0 slaves), 952656 bytes in use
|
244
|
-
[28657] 11 Jul 22:27:33.315 - 0 clients connected (0 slaves), 952656 bytes in use
|
245
|
-
[28657] 11 Jul 22:27:38.353 - 0 clients connected (0 slaves), 952656 bytes in use
|
246
|
-
[28657] 11 Jul 22:27:43.401 - 0 clients connected (0 slaves), 952656 bytes in use
|
247
|
-
[28657] 11 Jul 22:27:48.455 - 0 clients connected (0 slaves), 952656 bytes in use
|
248
|
-
[28657] 11 Jul 22:27:53.523 - 0 clients connected (0 slaves), 952656 bytes in use
|
249
|
-
[28657] 11 Jul 22:27:58.617 - 0 clients connected (0 slaves), 952656 bytes in use
|
250
|
-
[28657] 11 Jul 22:28:03.670 - 0 clients connected (0 slaves), 952656 bytes in use
|
251
|
-
[28657] 11 Jul 22:28:08.712 - 0 clients connected (0 slaves), 952656 bytes in use
|
252
|
-
[28657] 11 Jul 22:28:10.557 - Accepted ::1:53720
|
253
|
-
[28657] 11 Jul 22:28:13.743 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
254
|
-
[28657] 11 Jul 22:28:13.743 - 1 clients connected (0 slaves), 970448 bytes in use
|
255
|
-
[28657] 11 Jul 22:28:18.780 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
256
|
-
[28657] 11 Jul 22:28:18.780 - 1 clients connected (0 slaves), 970448 bytes in use
|
257
|
-
[28657] 11 Jul 22:28:23.825 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
258
|
-
[28657] 11 Jul 22:28:23.825 - 1 clients connected (0 slaves), 970448 bytes in use
|
259
|
-
[29124] 11 Jul 22:32:27.506 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
260
|
-
_._
|
261
|
-
_.-``__ ''-._
|
262
|
-
_.-`` `. `_. ''-._ Redis 2.8.12 (00000000/0) 64 bit
|
263
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
264
|
-
( ' , .-` | `, ) Running in stand alone mode
|
265
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
266
|
-
| `-._ `._ / _.-' | PID: 29124
|
267
|
-
`-._ `-._ `-./ _.-' _.-'
|
268
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
269
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
270
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
271
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
272
|
-
| `-._`-._ _.-'_.-' |
|
273
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
274
|
-
`-._ `-.__.-' _.-'
|
275
|
-
`-._ _.-'
|
276
|
-
`-.__.-'
|
277
|
-
|
278
|
-
[29124] 11 Jul 22:32:27.511 # Server started, Redis version 2.8.12
|
279
|
-
[29124] 11 Jul 22:32:27.512 * The server is now ready to accept connections on port 9736
|
280
|
-
[29124] 11 Jul 22:32:28.511 - 0 clients connected (0 slaves), 952656 bytes in use
|
281
|
-
[29124] 11 Jul 22:32:33.598 - 0 clients connected (0 slaves), 952656 bytes in use
|
282
|
-
[29124] 11 Jul 22:32:38.641 - 0 clients connected (0 slaves), 952656 bytes in use
|
283
|
-
[29124] 11 Jul 22:32:43.706 - 0 clients connected (0 slaves), 952656 bytes in use
|
284
|
-
[29124] 11 Jul 22:32:48.764 - 0 clients connected (0 slaves), 952656 bytes in use
|
285
|
-
[29124] 11 Jul 22:32:53.807 - 0 clients connected (0 slaves), 952656 bytes in use
|
286
|
-
[29124] 11 Jul 22:32:58.861 - 0 clients connected (0 slaves), 952656 bytes in use
|
287
|
-
[29124] 11 Jul 22:33:03.908 - 0 clients connected (0 slaves), 952656 bytes in use
|
288
|
-
[29124] 11 Jul 22:33:08.990 - 0 clients connected (0 slaves), 952656 bytes in use
|
289
|
-
[29124] 11 Jul 22:33:14.125 - 0 clients connected (0 slaves), 952656 bytes in use
|
290
|
-
[29124] 11 Jul 22:33:19.280 - 0 clients connected (0 slaves), 952656 bytes in use
|
291
|
-
[29124] 11 Jul 22:33:24.398 - 0 clients connected (0 slaves), 952656 bytes in use
|
292
|
-
[29124] 11 Jul 22:33:29.454 - 0 clients connected (0 slaves), 952656 bytes in use
|
293
|
-
[29124] 11 Jul 22:33:34.563 - 0 clients connected (0 slaves), 952656 bytes in use
|
294
|
-
[29124] 11 Jul 22:33:39.607 - 0 clients connected (0 slaves), 952656 bytes in use
|
295
|
-
[29124] 11 Jul 22:33:44.696 - 0 clients connected (0 slaves), 952656 bytes in use
|
296
|
-
[29124] 11 Jul 22:33:49.820 - 0 clients connected (0 slaves), 952656 bytes in use
|
297
|
-
[29124] 11 Jul 22:33:54.941 - 0 clients connected (0 slaves), 952656 bytes in use
|
298
|
-
[29124] 11 Jul 22:34:00.331 - 0 clients connected (0 slaves), 952656 bytes in use
|
299
|
-
[29124] 11 Jul 22:34:05.418 - 0 clients connected (0 slaves), 952656 bytes in use
|
300
|
-
[29124] 11 Jul 22:34:10.873 - 0 clients connected (0 slaves), 952656 bytes in use
|
301
|
-
[29124] 11 Jul 22:34:16.185 - 0 clients connected (0 slaves), 952656 bytes in use
|
302
|
-
[29124] 11 Jul 22:34:21.259 - 0 clients connected (0 slaves), 952656 bytes in use
|
303
|
-
[29124] 11 Jul 22:34:26.313 - 0 clients connected (0 slaves), 952656 bytes in use
|
304
|
-
[29124] 11 Jul 22:34:31.373 - 0 clients connected (0 slaves), 952656 bytes in use
|
305
|
-
[29124] 11 Jul 22:34:35.451 - Accepted ::1:54494
|
306
|
-
[29124] 11 Jul 22:34:36.506 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
307
|
-
[29124] 11 Jul 22:34:36.506 - 1 clients connected (0 slaves), 970448 bytes in use
|
308
|
-
[29124] 11 Jul 22:34:41.542 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
309
|
-
[29124] 11 Jul 22:34:41.543 - 1 clients connected (0 slaves), 970448 bytes in use
|
310
|
-
[29124] 11 Jul 22:34:46.581 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
311
|
-
[29124] 11 Jul 22:34:46.582 - 1 clients connected (0 slaves), 970448 bytes in use
|
312
|
-
[29124] 11 Jul 22:34:51.639 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
313
|
-
[29124] 11 Jul 22:34:51.640 - 1 clients connected (0 slaves), 970448 bytes in use
|
314
|
-
[29124] 11 Jul 22:34:56.710 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
315
|
-
[29124] 11 Jul 22:34:56.710 - 1 clients connected (0 slaves), 970448 bytes in use
|
316
|
-
[29124] 11 Jul 22:35:01.818 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
317
|
-
[29124] 11 Jul 22:35:01.818 - 1 clients connected (0 slaves), 970448 bytes in use
|
318
|
-
[29124] 11 Jul 22:35:06.869 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
319
|
-
[29124] 11 Jul 22:35:06.869 - 1 clients connected (0 slaves), 970448 bytes in use
|
320
|
-
[29124] 11 Jul 22:35:11.921 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
321
|
-
[29124] 11 Jul 22:35:11.921 - 1 clients connected (0 slaves), 970448 bytes in use
|
322
|
-
[29124] 11 Jul 22:35:16.965 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
323
|
-
[29124] 11 Jul 22:35:16.965 - 1 clients connected (0 slaves), 970448 bytes in use
|
324
|
-
[29124] 11 Jul 22:35:22.003 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
325
|
-
[29124] 11 Jul 22:35:22.004 - 1 clients connected (0 slaves), 970448 bytes in use
|
326
|
-
[65748] 21 Jul 02:48:00.562 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
327
|
-
_._
|
328
|
-
_.-``__ ''-._
|
329
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
330
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
331
|
-
( ' , .-` | `, ) Running in stand alone mode
|
332
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
333
|
-
| `-._ `._ / _.-' | PID: 65748
|
334
|
-
`-._ `-._ `-./ _.-' _.-'
|
335
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
336
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
337
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
338
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
339
|
-
| `-._`-._ _.-'_.-' |
|
340
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
341
|
-
`-._ `-.__.-' _.-'
|
342
|
-
`-._ _.-'
|
343
|
-
`-.__.-'
|
344
|
-
|
345
|
-
[65748] 21 Jul 02:48:00.575 # Server started, Redis version 2.8.13
|
346
|
-
[65748] 21 Jul 02:48:00.575 * The server is now ready to accept connections on port 9736
|
347
|
-
[65748] 21 Jul 02:48:01.573 - 0 clients connected (0 slaves), 952944 bytes in use
|
348
|
-
[65748] 21 Jul 02:48:06.655 - 0 clients connected (0 slaves), 952944 bytes in use
|
349
|
-
[65748] 21 Jul 02:48:11.697 - 0 clients connected (0 slaves), 952944 bytes in use
|
350
|
-
[65748] 21 Jul 02:48:16.750 - 0 clients connected (0 slaves), 952944 bytes in use
|
351
|
-
[65748] 21 Jul 02:48:21.815 - 0 clients connected (0 slaves), 952944 bytes in use
|
352
|
-
[65748] 21 Jul 02:48:26.902 - 0 clients connected (0 slaves), 952944 bytes in use
|
353
|
-
[65748] 21 Jul 02:48:31.986 - 0 clients connected (0 slaves), 952944 bytes in use
|
354
|
-
[65748] 21 Jul 02:48:37.069 - 0 clients connected (0 slaves), 952944 bytes in use
|
355
|
-
[65748] 21 Jul 02:48:42.120 - 0 clients connected (0 slaves), 952944 bytes in use
|
356
|
-
[65748] 21 Jul 02:48:45.389 - Accepted 127.0.0.1:59400
|
357
|
-
[65748] 21 Jul 02:48:47.164 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
358
|
-
[65748] 21 Jul 02:48:47.164 - 1 clients connected (0 slaves), 970736 bytes in use
|
359
|
-
[65748] 21 Jul 02:48:52.210 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
360
|
-
[65748] 21 Jul 02:48:52.210 - 1 clients connected (0 slaves), 970736 bytes in use
|
361
|
-
[65748] 21 Jul 02:48:57.255 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
362
|
-
[65748] 21 Jul 02:48:57.255 - 1 clients connected (0 slaves), 970736 bytes in use
|
363
|
-
[65748] 21 Jul 02:49:02.285 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
364
|
-
[65748] 21 Jul 02:49:02.285 - 1 clients connected (0 slaves), 970736 bytes in use
|
365
|
-
[68869] 15 Aug 00:48:45.216 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
366
|
-
_._
|
367
|
-
_.-``__ ''-._
|
368
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
369
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
370
|
-
( ' , .-` | `, ) Running in stand alone mode
|
371
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
372
|
-
| `-._ `._ / _.-' | PID: 68869
|
373
|
-
`-._ `-._ `-./ _.-' _.-'
|
374
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
375
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
376
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
377
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
378
|
-
| `-._`-._ _.-'_.-' |
|
379
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
380
|
-
`-._ `-.__.-' _.-'
|
381
|
-
`-._ _.-'
|
382
|
-
`-.__.-'
|
383
|
-
|
384
|
-
[68869] 15 Aug 00:48:45.227 # Server started, Redis version 2.8.13
|
385
|
-
[68869] 15 Aug 00:48:45.228 * The server is now ready to accept connections on port 9736
|
386
|
-
[68869] 15 Aug 00:48:46.223 - 0 clients connected (0 slaves), 952944 bytes in use
|
387
|
-
[68869] 15 Aug 00:48:51.263 - 0 clients connected (0 slaves), 952944 bytes in use
|
388
|
-
[68869] 15 Aug 00:48:56.190 - Accepted 127.0.0.1:58999
|
389
|
-
[68869] 15 Aug 00:48:56.282 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
390
|
-
[68869] 15 Aug 00:48:56.282 - 1 clients connected (0 slaves), 1004000 bytes in use
|
391
|
-
[68869] 15 Aug 00:49:01.308 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
392
|
-
[68869] 15 Aug 00:49:01.308 - 1 clients connected (0 slaves), 970736 bytes in use
|
393
|
-
[69240] 15 Aug 00:53:40.278 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
394
|
-
_._
|
395
|
-
_.-``__ ''-._
|
396
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
397
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
398
|
-
( ' , .-` | `, ) Running in stand alone mode
|
399
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
400
|
-
| `-._ `._ / _.-' | PID: 69240
|
401
|
-
`-._ `-._ `-./ _.-' _.-'
|
402
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
403
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
404
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
405
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
406
|
-
| `-._`-._ _.-'_.-' |
|
407
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
408
|
-
`-._ `-.__.-' _.-'
|
409
|
-
`-._ _.-'
|
410
|
-
`-.__.-'
|
411
|
-
|
412
|
-
[69240] 15 Aug 00:53:40.280 # Server started, Redis version 2.8.13
|
413
|
-
[69240] 15 Aug 00:53:40.281 * The server is now ready to accept connections on port 9736
|
414
|
-
[69240] 15 Aug 00:53:40.281 - 0 clients connected (0 slaves), 952944 bytes in use
|
415
|
-
[69240] 15 Aug 00:53:45.310 - 0 clients connected (0 slaves), 952944 bytes in use
|
416
|
-
[69240] 15 Aug 00:53:50.349 - 0 clients connected (0 slaves), 952944 bytes in use
|
417
|
-
[69240] 15 Aug 00:53:51.712 - Accepted 127.0.0.1:59327
|
418
|
-
[69240] 15 Aug 00:53:55.379 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
419
|
-
[69240] 15 Aug 00:53:55.380 - 1 clients connected (0 slaves), 970736 bytes in use
|
420
|
-
[69240] 15 Aug 00:54:00.409 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
421
|
-
[69240] 15 Aug 00:54:00.409 - 1 clients connected (0 slaves), 970736 bytes in use
|
422
|
-
[3967] 15 Aug 14:29:56.523 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
423
|
-
_._
|
424
|
-
_.-``__ ''-._
|
425
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
426
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
427
|
-
( ' , .-` | `, ) Running in stand alone mode
|
428
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
429
|
-
| `-._ `._ / _.-' | PID: 3967
|
430
|
-
`-._ `-._ `-./ _.-' _.-'
|
431
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
432
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
433
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
434
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
435
|
-
| `-._`-._ _.-'_.-' |
|
436
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
437
|
-
`-._ `-.__.-' _.-'
|
438
|
-
`-._ _.-'
|
439
|
-
`-.__.-'
|
440
|
-
|
441
|
-
[3967] 15 Aug 14:29:56.574 # Server started, Redis version 2.8.13
|
442
|
-
[3967] 15 Aug 14:29:56.574 * The server is now ready to accept connections on port 9736
|
443
|
-
[3967] 15 Aug 14:29:57.572 - 0 clients connected (0 slaves), 952944 bytes in use
|
444
|
-
[3967] 15 Aug 14:30:02.609 - 0 clients connected (0 slaves), 952944 bytes in use
|
445
|
-
[3967] 15 Aug 14:30:07.273 - Accepted ::1:59039
|
446
|
-
[3967] 15 Aug 14:30:07.645 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
447
|
-
[3967] 15 Aug 14:30:07.645 - 1 clients connected (0 slaves), 970736 bytes in use
|
448
|
-
[3967] 15 Aug 14:30:12.675 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
449
|
-
[3967] 15 Aug 14:30:12.675 - 1 clients connected (0 slaves), 970736 bytes in use
|
450
|
-
[3967] 15 Aug 14:30:17.709 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
451
|
-
[3967] 15 Aug 14:30:17.709 - 1 clients connected (0 slaves), 970736 bytes in use
|
452
|
-
[21134] 16 Aug 19:21:46.071 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
453
|
-
_._
|
454
|
-
_.-``__ ''-._
|
455
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
456
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
457
|
-
( ' , .-` | `, ) Running in stand alone mode
|
458
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
459
|
-
| `-._ `._ / _.-' | PID: 21134
|
460
|
-
`-._ `-._ `-./ _.-' _.-'
|
461
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
462
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
463
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
464
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
465
|
-
| `-._`-._ _.-'_.-' |
|
466
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
467
|
-
`-._ `-.__.-' _.-'
|
468
|
-
`-._ _.-'
|
469
|
-
`-.__.-'
|
470
|
-
|
471
|
-
[21134] 16 Aug 19:21:46.121 # Server started, Redis version 2.8.13
|
472
|
-
[21134] 16 Aug 19:21:46.121 * The server is now ready to accept connections on port 9736
|
473
|
-
[21134] 16 Aug 19:21:47.119 - 0 clients connected (0 slaves), 952944 bytes in use
|
474
|
-
[21134] 16 Aug 19:21:52.156 - 0 clients connected (0 slaves), 952944 bytes in use
|
475
|
-
[21134] 16 Aug 19:21:56.784 - Accepted 127.0.0.1:56786
|
476
|
-
[21134] 16 Aug 19:21:57.191 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
477
|
-
[21134] 16 Aug 19:21:57.191 - 1 clients connected (0 slaves), 970736 bytes in use
|
478
|
-
[21134] 16 Aug 19:22:02.226 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
479
|
-
[21134] 16 Aug 19:22:02.226 - 1 clients connected (0 slaves), 970736 bytes in use
|
480
|
-
[59124] 18 Aug 08:54:41.265 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
481
|
-
_._
|
482
|
-
_.-``__ ''-._
|
483
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
484
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
485
|
-
( ' , .-` | `, ) Running in stand alone mode
|
486
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
487
|
-
| `-._ `._ / _.-' | PID: 59124
|
488
|
-
`-._ `-._ `-./ _.-' _.-'
|
489
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
490
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
491
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
492
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
493
|
-
| `-._`-._ _.-'_.-' |
|
494
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
495
|
-
`-._ `-.__.-' _.-'
|
496
|
-
`-._ _.-'
|
497
|
-
`-.__.-'
|
498
|
-
|
499
|
-
[59124] 18 Aug 08:54:41.284 # Server started, Redis version 2.8.13
|
500
|
-
[59124] 18 Aug 08:54:41.285 * The server is now ready to accept connections on port 9736
|
501
|
-
[59124] 18 Aug 08:54:42.273 - 0 clients connected (0 slaves), 952944 bytes in use
|
502
|
-
[59124] 18 Aug 08:54:47.310 - 0 clients connected (0 slaves), 952944 bytes in use
|
503
|
-
[59124] 18 Aug 08:54:52.346 - 0 clients connected (0 slaves), 952944 bytes in use
|
504
|
-
[59124] 18 Aug 08:54:53.809 - Accepted ::1:57056
|
505
|
-
[59124] 18 Aug 08:54:57.381 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
506
|
-
[59124] 18 Aug 08:54:57.381 - 1 clients connected (0 slaves), 970736 bytes in use
|
507
|
-
[59124] 18 Aug 08:55:02.414 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
508
|
-
[59124] 18 Aug 08:55:02.414 - 1 clients connected (0 slaves), 970736 bytes in use
|
509
|
-
[60021] 18 Aug 09:08:44.353 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
510
|
-
_._
|
511
|
-
_.-``__ ''-._
|
512
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
513
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
514
|
-
( ' , .-` | `, ) Running in stand alone mode
|
515
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
516
|
-
| `-._ `._ / _.-' | PID: 60021
|
517
|
-
`-._ `-._ `-./ _.-' _.-'
|
518
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
519
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
520
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
521
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
522
|
-
| `-._`-._ _.-'_.-' |
|
523
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
524
|
-
`-._ `-.__.-' _.-'
|
525
|
-
`-._ _.-'
|
526
|
-
`-.__.-'
|
527
|
-
|
528
|
-
[60021] 18 Aug 09:08:44.355 # Server started, Redis version 2.8.13
|
529
|
-
[60021] 18 Aug 09:08:44.355 * The server is now ready to accept connections on port 9736
|
530
|
-
[60021] 18 Aug 09:08:44.355 - 0 clients connected (0 slaves), 952944 bytes in use
|
531
|
-
[60021] 18 Aug 09:08:49.390 - 0 clients connected (0 slaves), 952944 bytes in use
|
532
|
-
[60021] 18 Aug 09:08:54.431 - 0 clients connected (0 slaves), 952944 bytes in use
|
533
|
-
[60021] 18 Aug 09:08:55.078 - Accepted ::1:57151
|
534
|
-
[60021] 18 Aug 09:08:59.467 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
535
|
-
[60021] 18 Aug 09:08:59.467 - 1 clients connected (0 slaves), 970736 bytes in use
|
536
|
-
[75088] 18 Aug 19:24:43.021 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
537
|
-
_._
|
538
|
-
_.-``__ ''-._
|
539
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
540
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
541
|
-
( ' , .-` | `, ) Running in stand alone mode
|
542
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
543
|
-
| `-._ `._ / _.-' | PID: 75088
|
544
|
-
`-._ `-._ `-./ _.-' _.-'
|
545
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
546
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
547
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
548
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
549
|
-
| `-._`-._ _.-'_.-' |
|
550
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
551
|
-
`-._ `-.__.-' _.-'
|
552
|
-
`-._ _.-'
|
553
|
-
`-.__.-'
|
554
|
-
|
555
|
-
[75088] 18 Aug 19:24:43.081 # Server started, Redis version 2.8.13
|
556
|
-
[75088] 18 Aug 19:24:43.082 * The server is now ready to accept connections on port 9736
|
557
|
-
[75088] 18 Aug 19:24:44.079 - 0 clients connected (0 slaves), 952944 bytes in use
|
558
|
-
[75088] 18 Aug 19:24:49.124 - 0 clients connected (0 slaves), 952944 bytes in use
|
559
|
-
[75088] 18 Aug 19:24:54.167 - 0 clients connected (0 slaves), 952944 bytes in use
|
560
|
-
[75088] 18 Aug 19:24:54.311 - Accepted 127.0.0.1:56835
|
561
|
-
[75088] 18 Aug 19:24:59.207 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
562
|
-
[75088] 18 Aug 19:24:59.207 - 1 clients connected (0 slaves), 970736 bytes in use
|
563
|
-
[75781] 18 Aug 19:48:28.752 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
564
|
-
_._
|
565
|
-
_.-``__ ''-._
|
566
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
567
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
568
|
-
( ' , .-` | `, ) Running in stand alone mode
|
569
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
570
|
-
| `-._ `._ / _.-' | PID: 75781
|
571
|
-
`-._ `-._ `-./ _.-' _.-'
|
572
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
573
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
574
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
575
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
576
|
-
| `-._`-._ _.-'_.-' |
|
577
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
578
|
-
`-._ `-.__.-' _.-'
|
579
|
-
`-._ _.-'
|
580
|
-
`-.__.-'
|
581
|
-
|
582
|
-
[75781] 18 Aug 19:48:28.759 # Server started, Redis version 2.8.13
|
583
|
-
[75781] 18 Aug 19:48:28.760 * The server is now ready to accept connections on port 9736
|
584
|
-
[75781] 18 Aug 19:48:29.759 - 0 clients connected (0 slaves), 952944 bytes in use
|
585
|
-
[75781] 18 Aug 19:48:34.817 - 0 clients connected (0 slaves), 952944 bytes in use
|
586
|
-
[75781] 18 Aug 19:48:39.926 - 0 clients connected (0 slaves), 952944 bytes in use
|
587
|
-
[75781] 18 Aug 19:48:44.986 - 0 clients connected (0 slaves), 952944 bytes in use
|
588
|
-
[75781] 18 Aug 19:48:50.052 - 0 clients connected (0 slaves), 952944 bytes in use
|
589
|
-
[75781] 18 Aug 19:48:55.098 - 0 clients connected (0 slaves), 952944 bytes in use
|
590
|
-
[75781] 18 Aug 19:49:00.162 - 0 clients connected (0 slaves), 952944 bytes in use
|
591
|
-
[75781] 18 Aug 19:49:05.211 - 0 clients connected (0 slaves), 952944 bytes in use
|
592
|
-
[75781] 18 Aug 19:49:10.130 - Accepted 127.0.0.1:58199
|
593
|
-
[75781] 18 Aug 19:49:10.260 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
594
|
-
[75781] 18 Aug 19:49:10.260 - 1 clients connected (0 slaves), 970736 bytes in use
|
595
|
-
[75781] 18 Aug 19:49:15.311 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
596
|
-
[75781] 18 Aug 19:49:15.311 - 1 clients connected (0 slaves), 970736 bytes in use
|
597
|
-
[75781] 18 Aug 19:49:20.370 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
598
|
-
[75781] 18 Aug 19:49:20.370 - 1 clients connected (0 slaves), 970736 bytes in use
|
599
|
-
[75781] 18 Aug 19:49:25.421 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
600
|
-
[75781] 18 Aug 19:49:25.421 - 1 clients connected (0 slaves), 970736 bytes in use
|
601
|
-
[75781] 18 Aug 19:49:30.475 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
602
|
-
[75781] 18 Aug 19:49:30.475 - 1 clients connected (0 slaves), 970736 bytes in use
|
603
|
-
[75781] 18 Aug 19:49:35.544 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
604
|
-
[75781] 18 Aug 19:49:35.545 - 1 clients connected (0 slaves), 970736 bytes in use
|
605
|
-
[75932] 18 Aug 19:51:41.211 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
606
|
-
_._
|
607
|
-
_.-``__ ''-._
|
608
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
609
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
610
|
-
( ' , .-` | `, ) Running in stand alone mode
|
611
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
612
|
-
| `-._ `._ / _.-' | PID: 75932
|
613
|
-
`-._ `-._ `-./ _.-' _.-'
|
614
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
615
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
616
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
617
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
618
|
-
| `-._`-._ _.-'_.-' |
|
619
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
620
|
-
`-._ `-.__.-' _.-'
|
621
|
-
`-._ _.-'
|
622
|
-
`-.__.-'
|
623
|
-
|
624
|
-
[75932] 18 Aug 19:51:41.216 # Server started, Redis version 2.8.13
|
625
|
-
[75932] 18 Aug 19:51:41.216 * The server is now ready to accept connections on port 9736
|
626
|
-
[75932] 18 Aug 19:51:42.217 - 0 clients connected (0 slaves), 952944 bytes in use
|
627
|
-
[75932] 18 Aug 19:51:47.297 - 0 clients connected (0 slaves), 952944 bytes in use
|
628
|
-
[75932] 18 Aug 19:51:52.343 - 0 clients connected (0 slaves), 952944 bytes in use
|
629
|
-
[75932] 18 Aug 19:51:57.396 - 0 clients connected (0 slaves), 952944 bytes in use
|
630
|
-
[75932] 18 Aug 19:52:02.457 - 0 clients connected (0 slaves), 952944 bytes in use
|
631
|
-
[75932] 18 Aug 19:52:07.517 - 0 clients connected (0 slaves), 952944 bytes in use
|
632
|
-
[75932] 18 Aug 19:52:12.566 - 0 clients connected (0 slaves), 952944 bytes in use
|
633
|
-
[75932] 18 Aug 19:52:17.654 - 0 clients connected (0 slaves), 952944 bytes in use
|
634
|
-
[75932] 18 Aug 19:52:22.718 - 0 clients connected (0 slaves), 952944 bytes in use
|
635
|
-
[75932] 18 Aug 19:52:27.763 - 0 clients connected (0 slaves), 952944 bytes in use
|
636
|
-
[75932] 18 Aug 19:52:28.697 - Accepted 127.0.0.1:58405
|
637
|
-
[75932] 18 Aug 19:52:32.808 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
638
|
-
[75932] 18 Aug 19:52:32.809 - 1 clients connected (0 slaves), 970736 bytes in use
|
639
|
-
[75932] 18 Aug 19:52:37.856 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
640
|
-
[75932] 18 Aug 19:52:37.857 - 1 clients connected (0 slaves), 970736 bytes in use
|
641
|
-
[75932] 18 Aug 19:52:42.892 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
642
|
-
[75932] 18 Aug 19:52:42.892 - 1 clients connected (0 slaves), 970736 bytes in use
|
643
|
-
[75932] 18 Aug 19:52:47.930 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
644
|
-
[75932] 18 Aug 19:52:47.931 - 1 clients connected (0 slaves), 970736 bytes in use
|
645
|
-
[75932] 18 Aug 19:52:52.970 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
646
|
-
[75932] 18 Aug 19:52:52.970 - 1 clients connected (0 slaves), 970736 bytes in use
|
647
|
-
[82250] 18 Aug 22:49:03.016 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
648
|
-
_._
|
649
|
-
_.-``__ ''-._
|
650
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
651
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
652
|
-
( ' , .-` | `, ) Running in stand alone mode
|
653
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
654
|
-
| `-._ `._ / _.-' | PID: 82250
|
655
|
-
`-._ `-._ `-./ _.-' _.-'
|
656
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
657
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
658
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
659
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
660
|
-
| `-._`-._ _.-'_.-' |
|
661
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
662
|
-
`-._ `-.__.-' _.-'
|
663
|
-
`-._ _.-'
|
664
|
-
`-.__.-'
|
665
|
-
|
666
|
-
[82250] 18 Aug 22:49:03.076 # Server started, Redis version 2.8.13
|
667
|
-
[82250] 18 Aug 22:49:03.076 * The server is now ready to accept connections on port 9736
|
668
|
-
[82319] 18 Aug 22:50:40.070 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
669
|
-
_._
|
670
|
-
_.-``__ ''-._
|
671
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
672
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
673
|
-
( ' , .-` | `, ) Running in stand alone mode
|
674
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
675
|
-
| `-._ `._ / _.-' | PID: 82319
|
676
|
-
`-._ `-._ `-./ _.-' _.-'
|
677
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
678
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
679
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
680
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
681
|
-
| `-._`-._ _.-'_.-' |
|
682
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
683
|
-
`-._ `-.__.-' _.-'
|
684
|
-
`-._ _.-'
|
685
|
-
`-.__.-'
|
686
|
-
|
687
|
-
[82319] 18 Aug 22:50:40.072 # Server started, Redis version 2.8.13
|
688
|
-
[82319] 18 Aug 22:50:40.072 * The server is now ready to accept connections on port 9736
|
689
|
-
[82319] 18 Aug 22:50:40.073 - 0 clients connected (0 slaves), 952944 bytes in use
|
690
|
-
[82380] 18 Aug 22:50:54.247 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
691
|
-
_._
|
692
|
-
_.-``__ ''-._
|
693
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
694
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
695
|
-
( ' , .-` | `, ) Running in stand alone mode
|
696
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
697
|
-
| `-._ `._ / _.-' | PID: 82380
|
698
|
-
`-._ `-._ `-./ _.-' _.-'
|
699
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
700
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
701
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
702
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
703
|
-
| `-._`-._ _.-'_.-' |
|
704
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
705
|
-
`-._ `-.__.-' _.-'
|
706
|
-
`-._ _.-'
|
707
|
-
`-.__.-'
|
708
|
-
|
709
|
-
[82380] 18 Aug 22:50:54.250 # Server started, Redis version 2.8.13
|
710
|
-
[82380] 18 Aug 22:50:54.250 * The server is now ready to accept connections on port 9736
|
711
|
-
[82380] 18 Aug 22:50:54.250 - 0 clients connected (0 slaves), 952944 bytes in use
|
712
|
-
[82432] 18 Aug 22:51:10.393 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
713
|
-
_._
|
714
|
-
_.-``__ ''-._
|
715
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
716
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
717
|
-
( ' , .-` | `, ) Running in stand alone mode
|
718
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
719
|
-
| `-._ `._ / _.-' | PID: 82432
|
720
|
-
`-._ `-._ `-./ _.-' _.-'
|
721
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
722
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
723
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
724
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
725
|
-
| `-._`-._ _.-'_.-' |
|
726
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
727
|
-
`-._ `-.__.-' _.-'
|
728
|
-
`-._ _.-'
|
729
|
-
`-.__.-'
|
730
|
-
|
731
|
-
[82432] 18 Aug 22:51:10.395 # Server started, Redis version 2.8.13
|
732
|
-
[82432] 18 Aug 22:51:10.395 * The server is now ready to accept connections on port 9736
|
733
|
-
[82432] 18 Aug 22:51:10.395 - 0 clients connected (0 slaves), 952944 bytes in use
|
734
|
-
[82483] 18 Aug 22:51:23.046 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
735
|
-
_._
|
736
|
-
_.-``__ ''-._
|
737
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
738
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
739
|
-
( ' , .-` | `, ) Running in stand alone mode
|
740
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
741
|
-
| `-._ `._ / _.-' | PID: 82483
|
742
|
-
`-._ `-._ `-./ _.-' _.-'
|
743
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
744
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
745
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
746
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
747
|
-
| `-._`-._ _.-'_.-' |
|
748
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
749
|
-
`-._ `-.__.-' _.-'
|
750
|
-
`-._ _.-'
|
751
|
-
`-.__.-'
|
752
|
-
|
753
|
-
[82483] 18 Aug 22:51:23.048 # Server started, Redis version 2.8.13
|
754
|
-
[82483] 18 Aug 22:51:23.048 * The server is now ready to accept connections on port 9736
|
755
|
-
[82483] 18 Aug 22:51:23.049 - 0 clients connected (0 slaves), 952944 bytes in use
|
756
|
-
[8666] 20 Aug 00:43:43.928 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
757
|
-
_._
|
758
|
-
_.-``__ ''-._
|
759
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
760
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
761
|
-
( ' , .-` | `, ) Running in stand alone mode
|
762
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
763
|
-
| `-._ `._ / _.-' | PID: 8666
|
764
|
-
`-._ `-._ `-./ _.-' _.-'
|
765
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
766
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
767
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
768
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
769
|
-
| `-._`-._ _.-'_.-' |
|
770
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
771
|
-
`-._ `-.__.-' _.-'
|
772
|
-
`-._ _.-'
|
773
|
-
`-.__.-'
|
774
|
-
|
775
|
-
[8666] 20 Aug 00:43:43.985 # Server started, Redis version 2.8.13
|
776
|
-
[8666] 20 Aug 00:43:43.986 * The server is now ready to accept connections on port 9736
|
777
|
-
[8666] 20 Aug 00:43:44.977 - 0 clients connected (0 slaves), 952944 bytes in use
|
778
|
-
[8723] 20 Aug 00:44:18.761 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
779
|
-
_._
|
780
|
-
_.-``__ ''-._
|
781
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
782
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
783
|
-
( ' , .-` | `, ) Running in stand alone mode
|
784
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
785
|
-
| `-._ `._ / _.-' | PID: 8723
|
786
|
-
`-._ `-._ `-./ _.-' _.-'
|
787
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
788
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
789
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
790
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
791
|
-
| `-._`-._ _.-'_.-' |
|
792
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
793
|
-
`-._ `-.__.-' _.-'
|
794
|
-
`-._ _.-'
|
795
|
-
`-.__.-'
|
796
|
-
|
797
|
-
[8723] 20 Aug 00:44:18.764 # Server started, Redis version 2.8.13
|
798
|
-
[8723] 20 Aug 00:44:18.764 * The server is now ready to accept connections on port 9736
|
799
|
-
[8723] 20 Aug 00:44:19.763 - 0 clients connected (0 slaves), 952944 bytes in use
|
800
|
-
[8805] 20 Aug 00:45:11.165 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
801
|
-
_._
|
802
|
-
_.-``__ ''-._
|
803
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
804
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
805
|
-
( ' , .-` | `, ) Running in stand alone mode
|
806
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
807
|
-
| `-._ `._ / _.-' | PID: 8805
|
808
|
-
`-._ `-._ `-./ _.-' _.-'
|
809
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
810
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
811
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
812
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
813
|
-
| `-._`-._ _.-'_.-' |
|
814
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
815
|
-
`-._ `-.__.-' _.-'
|
816
|
-
`-._ _.-'
|
817
|
-
`-.__.-'
|
818
|
-
|
819
|
-
[8805] 20 Aug 00:45:11.167 # Server started, Redis version 2.8.13
|
820
|
-
[8805] 20 Aug 00:45:11.168 * The server is now ready to accept connections on port 9736
|
821
|
-
[8805] 20 Aug 00:45:12.167 - 0 clients connected (0 slaves), 952944 bytes in use
|
822
|
-
[8950] 20 Aug 00:46:34.924 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
823
|
-
_._
|
824
|
-
_.-``__ ''-._
|
825
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
826
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
827
|
-
( ' , .-` | `, ) Running in stand alone mode
|
828
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
829
|
-
| `-._ `._ / _.-' | PID: 8950
|
830
|
-
`-._ `-._ `-./ _.-' _.-'
|
831
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
832
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
833
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
834
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
835
|
-
| `-._`-._ _.-'_.-' |
|
836
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
837
|
-
`-._ `-.__.-' _.-'
|
838
|
-
`-._ _.-'
|
839
|
-
`-.__.-'
|
840
|
-
|
841
|
-
[8950] 20 Aug 00:46:34.925 # Server started, Redis version 2.8.13
|
842
|
-
[8950] 20 Aug 00:46:34.926 * The server is now ready to accept connections on port 9736
|
843
|
-
[8950] 20 Aug 00:46:34.926 - 0 clients connected (0 slaves), 952944 bytes in use
|
844
|
-
[9107] 20 Aug 00:47:56.626 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
845
|
-
_._
|
846
|
-
_.-``__ ''-._
|
847
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
848
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
849
|
-
( ' , .-` | `, ) Running in stand alone mode
|
850
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
851
|
-
| `-._ `._ / _.-' | PID: 9107
|
852
|
-
`-._ `-._ `-./ _.-' _.-'
|
853
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
854
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
855
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
856
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
857
|
-
| `-._`-._ _.-'_.-' |
|
858
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
859
|
-
`-._ `-.__.-' _.-'
|
860
|
-
`-._ _.-'
|
861
|
-
`-.__.-'
|
862
|
-
|
863
|
-
[9107] 20 Aug 00:47:56.628 # Server started, Redis version 2.8.13
|
864
|
-
[9107] 20 Aug 00:47:56.629 * The server is now ready to accept connections on port 9736
|
865
|
-
[9107] 20 Aug 00:47:56.629 - 0 clients connected (0 slaves), 952944 bytes in use
|
866
|
-
[9107] 20 Aug 00:48:01.657 - 0 clients connected (0 slaves), 952944 bytes in use
|
867
|
-
[9107] 20 Aug 00:48:06.690 - 0 clients connected (0 slaves), 952944 bytes in use
|
868
|
-
[9107] 20 Aug 00:48:08.660 - Accepted 127.0.0.1:56939
|
869
|
-
[9107] 20 Aug 00:48:11.722 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
870
|
-
[9107] 20 Aug 00:48:11.723 - 1 clients connected (0 slaves), 970736 bytes in use
|
871
|
-
[9107] 20 Aug 00:48:16.755 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
872
|
-
[9107] 20 Aug 00:48:16.755 - 1 clients connected (0 slaves), 970736 bytes in use
|
873
|
-
[9422] 20 Aug 00:52:16.028 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
874
|
-
_._
|
875
|
-
_.-``__ ''-._
|
876
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
877
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
878
|
-
( ' , .-` | `, ) Running in stand alone mode
|
879
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
880
|
-
| `-._ `._ / _.-' | PID: 9422
|
881
|
-
`-._ `-._ `-./ _.-' _.-'
|
882
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
883
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
884
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
885
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
886
|
-
| `-._`-._ _.-'_.-' |
|
887
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
888
|
-
`-._ `-.__.-' _.-'
|
889
|
-
`-._ _.-'
|
890
|
-
`-.__.-'
|
891
|
-
|
892
|
-
[9422] 20 Aug 00:52:16.031 # Server started, Redis version 2.8.13
|
893
|
-
[9422] 20 Aug 00:52:16.031 * The server is now ready to accept connections on port 9736
|
894
|
-
[9422] 20 Aug 00:52:16.031 - 0 clients connected (0 slaves), 952944 bytes in use
|
895
|
-
[9649] 20 Aug 00:54:00.253 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
896
|
-
_._
|
897
|
-
_.-``__ ''-._
|
898
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
899
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
900
|
-
( ' , .-` | `, ) Running in stand alone mode
|
901
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
902
|
-
| `-._ `._ / _.-' | PID: 9649
|
903
|
-
`-._ `-._ `-./ _.-' _.-'
|
904
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
905
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
906
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
907
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
908
|
-
| `-._`-._ _.-'_.-' |
|
909
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
910
|
-
`-._ `-.__.-' _.-'
|
911
|
-
`-._ _.-'
|
912
|
-
`-.__.-'
|
913
|
-
|
914
|
-
[9649] 20 Aug 00:54:00.255 # Server started, Redis version 2.8.13
|
915
|
-
[9649] 20 Aug 00:54:00.255 * The server is now ready to accept connections on port 9736
|
916
|
-
[9649] 20 Aug 00:54:00.255 - 0 clients connected (0 slaves), 952944 bytes in use
|
917
|
-
[9748] 20 Aug 00:54:36.630 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
918
|
-
_._
|
919
|
-
_.-``__ ''-._
|
920
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
921
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
922
|
-
( ' , .-` | `, ) Running in stand alone mode
|
923
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
924
|
-
| `-._ `._ / _.-' | PID: 9748
|
925
|
-
`-._ `-._ `-./ _.-' _.-'
|
926
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
927
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
928
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
929
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
930
|
-
| `-._`-._ _.-'_.-' |
|
931
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
932
|
-
`-._ `-.__.-' _.-'
|
933
|
-
`-._ _.-'
|
934
|
-
`-.__.-'
|
935
|
-
|
936
|
-
[9748] 20 Aug 00:54:36.632 # Server started, Redis version 2.8.13
|
937
|
-
[9748] 20 Aug 00:54:36.632 * The server is now ready to accept connections on port 9736
|
938
|
-
[9748] 20 Aug 00:54:36.632 - 0 clients connected (0 slaves), 952944 bytes in use
|
939
|
-
[9802] 20 Aug 00:54:58.024 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
940
|
-
_._
|
941
|
-
_.-``__ ''-._
|
942
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
943
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
944
|
-
( ' , .-` | `, ) Running in stand alone mode
|
945
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
946
|
-
| `-._ `._ / _.-' | PID: 9802
|
947
|
-
`-._ `-._ `-./ _.-' _.-'
|
948
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
949
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
950
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
951
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
952
|
-
| `-._`-._ _.-'_.-' |
|
953
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
954
|
-
`-._ `-.__.-' _.-'
|
955
|
-
`-._ _.-'
|
956
|
-
`-.__.-'
|
957
|
-
|
958
|
-
[9802] 20 Aug 00:54:58.026 # Server started, Redis version 2.8.13
|
959
|
-
[9802] 20 Aug 00:54:58.026 * The server is now ready to accept connections on port 9736
|
960
|
-
[9802] 20 Aug 00:54:58.026 - 0 clients connected (0 slaves), 952944 bytes in use
|
961
|
-
[9857] 20 Aug 00:56:01.183 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
962
|
-
_._
|
963
|
-
_.-``__ ''-._
|
964
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
965
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
966
|
-
( ' , .-` | `, ) Running in stand alone mode
|
967
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
968
|
-
| `-._ `._ / _.-' | PID: 9857
|
969
|
-
`-._ `-._ `-./ _.-' _.-'
|
970
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
971
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
972
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
973
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
974
|
-
| `-._`-._ _.-'_.-' |
|
975
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
976
|
-
`-._ `-.__.-' _.-'
|
977
|
-
`-._ _.-'
|
978
|
-
`-.__.-'
|
979
|
-
|
980
|
-
[9857] 20 Aug 00:56:01.185 # Server started, Redis version 2.8.13
|
981
|
-
[9857] 20 Aug 00:56:01.185 * The server is now ready to accept connections on port 9736
|
982
|
-
[9857] 20 Aug 00:56:01.185 - 0 clients connected (0 slaves), 952944 bytes in use
|
983
|
-
[9903] 20 Aug 00:56:35.729 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
984
|
-
_._
|
985
|
-
_.-``__ ''-._
|
986
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
987
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
988
|
-
( ' , .-` | `, ) Running in stand alone mode
|
989
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
990
|
-
| `-._ `._ / _.-' | PID: 9903
|
991
|
-
`-._ `-._ `-./ _.-' _.-'
|
992
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
993
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
994
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
995
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
996
|
-
| `-._`-._ _.-'_.-' |
|
997
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
998
|
-
`-._ `-.__.-' _.-'
|
999
|
-
`-._ _.-'
|
1000
|
-
`-.__.-'
|
1001
|
-
|
1002
|
-
[9903] 20 Aug 00:56:35.730 # Server started, Redis version 2.8.13
|
1003
|
-
[9903] 20 Aug 00:56:35.730 * The server is now ready to accept connections on port 9736
|
1004
|
-
[9903] 20 Aug 00:56:35.732 - 0 clients connected (0 slaves), 952944 bytes in use
|
1005
|
-
[14949] 20 Aug 03:07:25.544 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1006
|
-
_._
|
1007
|
-
_.-``__ ''-._
|
1008
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
1009
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1010
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1011
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1012
|
-
| `-._ `._ / _.-' | PID: 14949
|
1013
|
-
`-._ `-._ `-./ _.-' _.-'
|
1014
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1015
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1016
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1017
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1018
|
-
| `-._`-._ _.-'_.-' |
|
1019
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1020
|
-
`-._ `-.__.-' _.-'
|
1021
|
-
`-._ _.-'
|
1022
|
-
`-.__.-'
|
1023
|
-
|
1024
|
-
[14949] 20 Aug 03:07:25.553 # Server started, Redis version 2.8.13
|
1025
|
-
[14949] 20 Aug 03:07:25.554 * The server is now ready to accept connections on port 9736
|
1026
|
-
[14949] 20 Aug 03:07:26.551 - 0 clients connected (0 slaves), 952944 bytes in use
|
1027
|
-
[13164] 22 Aug 13:23:41.089 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1028
|
-
_._
|
1029
|
-
_.-``__ ''-._
|
1030
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
1031
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1032
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1033
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1034
|
-
| `-._ `._ / _.-' | PID: 13164
|
1035
|
-
`-._ `-._ `-./ _.-' _.-'
|
1036
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1037
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1038
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1039
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1040
|
-
| `-._`-._ _.-'_.-' |
|
1041
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1042
|
-
`-._ `-.__.-' _.-'
|
1043
|
-
`-._ _.-'
|
1044
|
-
`-.__.-'
|
1045
|
-
|
1046
|
-
[13164] 22 Aug 13:23:41.100 # Server started, Redis version 2.8.13
|
1047
|
-
[13164] 22 Aug 13:23:41.100 * The server is now ready to accept connections on port 9736
|
1048
|
-
[13164] 22 Aug 13:23:42.097 - 0 clients connected (0 slaves), 952944 bytes in use
|
1049
|
-
[13164] 22 Aug 13:23:47.164 - 0 clients connected (0 slaves), 952944 bytes in use
|
1050
|
-
[13164] 22 Aug 13:23:52.211 - 0 clients connected (0 slaves), 952944 bytes in use
|
1051
|
-
[13164] 22 Aug 13:23:53.610 - Accepted 127.0.0.1:56735
|
1052
|
-
[13164] 22 Aug 13:23:57.251 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1053
|
-
[13164] 22 Aug 13:23:57.251 - 1 clients connected (0 slaves), 970736 bytes in use
|
1054
|
-
[13164] 22 Aug 13:24:02.289 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1055
|
-
[13164] 22 Aug 13:24:02.289 - 1 clients connected (0 slaves), 970736 bytes in use
|
1056
|
-
[39042] 24 Aug 00:22:24.986 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1057
|
-
_._
|
1058
|
-
_.-``__ ''-._
|
1059
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
1060
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1061
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1062
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1063
|
-
| `-._ `._ / _.-' | PID: 39042
|
1064
|
-
`-._ `-._ `-./ _.-' _.-'
|
1065
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1066
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1067
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1068
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1069
|
-
| `-._`-._ _.-'_.-' |
|
1070
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1071
|
-
`-._ `-.__.-' _.-'
|
1072
|
-
`-._ _.-'
|
1073
|
-
`-.__.-'
|
1074
|
-
|
1075
|
-
[39042] 24 Aug 00:22:25.068 # Server started, Redis version 2.8.13
|
1076
|
-
[39042] 24 Aug 00:22:25.068 * The server is now ready to accept connections on port 9736
|
1077
|
-
[39042] 24 Aug 00:22:26.066 - 0 clients connected (0 slaves), 952944 bytes in use
|
1078
|
-
[39042] 24 Aug 00:22:31.123 - 0 clients connected (0 slaves), 952944 bytes in use
|
1079
|
-
[39042] 24 Aug 00:22:36.184 - 0 clients connected (0 slaves), 952944 bytes in use
|
1080
|
-
[39042] 24 Aug 00:22:36.625 - Accepted ::1:54585
|
1081
|
-
[39042] 24 Aug 00:22:41.231 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1082
|
-
[39042] 24 Aug 00:22:41.232 - 1 clients connected (0 slaves), 970736 bytes in use
|
1083
|
-
[69067] 28 Aug 14:37:15.352 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1084
|
-
_._
|
1085
|
-
_.-``__ ''-._
|
1086
|
-
_.-`` `. `_. ''-._ Redis 2.8.13 (00000000/0) 64 bit
|
1087
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1088
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1089
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1090
|
-
| `-._ `._ / _.-' | PID: 69067
|
1091
|
-
`-._ `-._ `-./ _.-' _.-'
|
1092
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1093
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1094
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1095
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1096
|
-
| `-._`-._ _.-'_.-' |
|
1097
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1098
|
-
`-._ `-.__.-' _.-'
|
1099
|
-
`-._ _.-'
|
1100
|
-
`-.__.-'
|
1101
|
-
|
1102
|
-
[69067] 28 Aug 14:37:15.368 # Server started, Redis version 2.8.13
|
1103
|
-
[69067] 28 Aug 14:37:15.369 * The server is now ready to accept connections on port 9736
|
1104
|
-
[69067] 28 Aug 14:37:16.361 - 0 clients connected (0 slaves), 952944 bytes in use
|
1105
|
-
[69067] 28 Aug 14:37:17.046 - Accepted ::1:49731
|
1106
|
-
[67248] 15 Sep 15:55:27.100 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1107
|
-
_._
|
1108
|
-
_.-``__ ''-._
|
1109
|
-
_.-`` `. `_. ''-._ Redis 2.8.14 (00000000/0) 64 bit
|
1110
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1111
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1112
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1113
|
-
| `-._ `._ / _.-' | PID: 67248
|
1114
|
-
`-._ `-._ `-./ _.-' _.-'
|
1115
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1116
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1117
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1118
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1119
|
-
| `-._`-._ _.-'_.-' |
|
1120
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1121
|
-
`-._ `-.__.-' _.-'
|
1122
|
-
`-._ _.-'
|
1123
|
-
`-.__.-'
|
1124
|
-
|
1125
|
-
[67248] 15 Sep 15:55:27.110 # Server started, Redis version 2.8.14
|
1126
|
-
[67248] 15 Sep 15:55:27.110 * The server is now ready to accept connections on port 9736
|
1127
|
-
[67248] 15 Sep 15:55:28.107 - 0 clients connected (0 slaves), 952944 bytes in use
|
1128
|
-
[67248] 15 Sep 15:55:33.146 - 0 clients connected (0 slaves), 952944 bytes in use
|
1129
|
-
[67248] 15 Sep 15:55:38.179 - 0 clients connected (0 slaves), 952944 bytes in use
|
1130
|
-
[67248] 15 Sep 15:55:38.501 - Accepted ::1:57031
|
1131
|
-
[67248] 15 Sep 15:55:43.216 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1132
|
-
[67248] 15 Sep 15:55:43.217 - 1 clients connected (0 slaves), 970736 bytes in use
|
1133
|
-
[67248] 15 Sep 15:55:48.251 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1134
|
-
[67248] 15 Sep 15:55:48.251 - 1 clients connected (0 slaves), 970736 bytes in use
|
1135
|
-
[22978] 15 Sep 17:52:12.067 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1136
|
-
_._
|
1137
|
-
_.-``__ ''-._
|
1138
|
-
_.-`` `. `_. ''-._ Redis 2.8.14 (00000000/0) 64 bit
|
1139
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1140
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1141
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1142
|
-
| `-._ `._ / _.-' | PID: 22978
|
1143
|
-
`-._ `-._ `-./ _.-' _.-'
|
1144
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1145
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1146
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1147
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1148
|
-
| `-._`-._ _.-'_.-' |
|
1149
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1150
|
-
`-._ `-.__.-' _.-'
|
1151
|
-
`-._ _.-'
|
1152
|
-
`-.__.-'
|
1153
|
-
|
1154
|
-
[22978] 15 Sep 17:52:12.082 # Server started, Redis version 2.8.14
|
1155
|
-
[22978] 15 Sep 17:52:12.082 * The server is now ready to accept connections on port 9736
|
1156
|
-
[22978] 15 Sep 17:52:13.074 - 0 clients connected (0 slaves), 952944 bytes in use
|
1157
|
-
[22978] 15 Sep 17:52:18.111 - 0 clients connected (0 slaves), 952944 bytes in use
|
1158
|
-
[22978] 15 Sep 17:52:23.160 - 0 clients connected (0 slaves), 952944 bytes in use
|
1159
|
-
[22978] 15 Sep 17:52:27.391 - Accepted ::1:50067
|
1160
|
-
[22978] 15 Sep 17:52:28.217 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1161
|
-
[22978] 15 Sep 17:52:28.217 - 1 clients connected (0 slaves), 970736 bytes in use
|
1162
|
-
[22978] 15 Sep 17:52:33.262 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1163
|
-
[22978] 15 Sep 17:52:33.262 - 1 clients connected (0 slaves), 970736 bytes in use
|
1164
|
-
[23159] 15 Sep 17:53:27.164 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1165
|
-
_._
|
1166
|
-
_.-``__ ''-._
|
1167
|
-
_.-`` `. `_. ''-._ Redis 2.8.14 (00000000/0) 64 bit
|
1168
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1169
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1170
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1171
|
-
| `-._ `._ / _.-' | PID: 23159
|
1172
|
-
`-._ `-._ `-./ _.-' _.-'
|
1173
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1174
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1175
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1176
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1177
|
-
| `-._`-._ _.-'_.-' |
|
1178
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1179
|
-
`-._ `-.__.-' _.-'
|
1180
|
-
`-._ _.-'
|
1181
|
-
`-.__.-'
|
1182
|
-
|
1183
|
-
[23159] 15 Sep 17:53:27.168 # Server started, Redis version 2.8.14
|
1184
|
-
[23159] 15 Sep 17:53:27.168 * The server is now ready to accept connections on port 9736
|
1185
|
-
[23159] 15 Sep 17:53:27.168 - 0 clients connected (0 slaves), 952944 bytes in use
|
1186
|
-
[23159] 15 Sep 17:53:32.223 - 0 clients connected (0 slaves), 952944 bytes in use
|
1187
|
-
[23159] 15 Sep 17:53:37.264 - 0 clients connected (0 slaves), 952944 bytes in use
|
1188
|
-
[23159] 15 Sep 17:53:39.676 - Accepted ::1:50123
|
1189
|
-
[23159] 15 Sep 17:53:42.305 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1190
|
-
[23159] 15 Sep 17:53:42.306 - 1 clients connected (0 slaves), 970736 bytes in use
|
1191
|
-
[23159] 15 Sep 17:53:47.353 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1192
|
-
[23159] 15 Sep 17:53:47.354 - 1 clients connected (0 slaves), 970736 bytes in use
|
1193
|
-
[80302] 22 Sep 01:48:46.799 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1194
|
-
_._
|
1195
|
-
_.-``__ ''-._
|
1196
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1197
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1198
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1199
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1200
|
-
| `-._ `._ / _.-' | PID: 80302
|
1201
|
-
`-._ `-._ `-./ _.-' _.-'
|
1202
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1203
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1204
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1205
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1206
|
-
| `-._`-._ _.-'_.-' |
|
1207
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1208
|
-
`-._ `-.__.-' _.-'
|
1209
|
-
`-._ _.-'
|
1210
|
-
`-.__.-'
|
1211
|
-
|
1212
|
-
[80302] 22 Sep 01:48:46.807 # Server started, Redis version 2.8.16
|
1213
|
-
[80302] 22 Sep 01:48:46.808 * The server is now ready to accept connections on port 9736
|
1214
|
-
[80302] 22 Sep 01:48:47.805 - 0 clients connected (0 slaves), 952944 bytes in use
|
1215
|
-
[80302] 22 Sep 01:48:52.862 - 0 clients connected (0 slaves), 952944 bytes in use
|
1216
|
-
[80302] 22 Sep 01:48:56.250 - Accepted ::1:61406
|
1217
|
-
[80302] 22 Sep 01:48:57.905 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1218
|
-
[80302] 22 Sep 01:48:57.905 - 1 clients connected (0 slaves), 970736 bytes in use
|
1219
|
-
[80302] 22 Sep 01:49:02.948 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1220
|
-
[80302] 22 Sep 01:49:02.948 - 1 clients connected (0 slaves), 970736 bytes in use
|
1221
|
-
[80454] 22 Sep 01:50:48.770 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1222
|
-
_._
|
1223
|
-
_.-``__ ''-._
|
1224
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1225
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1226
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1227
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1228
|
-
| `-._ `._ / _.-' | PID: 80454
|
1229
|
-
`-._ `-._ `-./ _.-' _.-'
|
1230
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1231
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1232
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1233
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1234
|
-
| `-._`-._ _.-'_.-' |
|
1235
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1236
|
-
`-._ `-.__.-' _.-'
|
1237
|
-
`-._ _.-'
|
1238
|
-
`-.__.-'
|
1239
|
-
|
1240
|
-
[80454] 22 Sep 01:50:48.771 # Server started, Redis version 2.8.16
|
1241
|
-
[80454] 22 Sep 01:50:48.771 * The server is now ready to accept connections on port 9736
|
1242
|
-
[80454] 22 Sep 01:50:48.773 - 0 clients connected (0 slaves), 952944 bytes in use
|
1243
|
-
[80454] 22 Sep 01:50:53.827 - 0 clients connected (0 slaves), 952944 bytes in use
|
1244
|
-
[80454] 22 Sep 01:50:58.103 - Accepted ::1:61447
|
1245
|
-
[80454] 22 Sep 01:50:58.870 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1246
|
-
[80454] 22 Sep 01:50:58.870 - 1 clients connected (0 slaves), 970736 bytes in use
|
1247
|
-
[80454] 22 Sep 01:51:03.912 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1248
|
-
[80454] 22 Sep 01:51:03.912 - 1 clients connected (0 slaves), 970736 bytes in use
|
1249
|
-
[80534] 22 Sep 01:51:14.451 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1250
|
-
_._
|
1251
|
-
_.-``__ ''-._
|
1252
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1253
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1254
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1255
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1256
|
-
| `-._ `._ / _.-' | PID: 80534
|
1257
|
-
`-._ `-._ `-./ _.-' _.-'
|
1258
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1259
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1260
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1261
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1262
|
-
| `-._`-._ _.-'_.-' |
|
1263
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1264
|
-
`-._ `-.__.-' _.-'
|
1265
|
-
`-._ _.-'
|
1266
|
-
`-.__.-'
|
1267
|
-
|
1268
|
-
[80534] 22 Sep 01:51:14.453 # Server started, Redis version 2.8.16
|
1269
|
-
[80534] 22 Sep 01:51:14.453 * The server is now ready to accept connections on port 9736
|
1270
|
-
[80534] 22 Sep 01:51:14.453 - 0 clients connected (0 slaves), 952944 bytes in use
|
1271
|
-
[80534] 22 Sep 01:51:19.536 - 0 clients connected (0 slaves), 952944 bytes in use
|
1272
|
-
[80534] 22 Sep 01:51:24.286 - Accepted ::1:61487
|
1273
|
-
[80534] 22 Sep 01:51:24.587 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1274
|
-
[80534] 22 Sep 01:51:24.587 - 1 clients connected (0 slaves), 970736 bytes in use
|
1275
|
-
[80534] 22 Sep 01:51:29.630 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1276
|
-
[80534] 22 Sep 01:51:29.630 - 1 clients connected (0 slaves), 970736 bytes in use
|
1277
|
-
[80732] 22 Sep 02:01:10.783 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1278
|
-
_._
|
1279
|
-
_.-``__ ''-._
|
1280
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1281
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1282
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1283
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1284
|
-
| `-._ `._ / _.-' | PID: 80732
|
1285
|
-
`-._ `-._ `-./ _.-' _.-'
|
1286
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1287
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1288
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1289
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1290
|
-
| `-._`-._ _.-'_.-' |
|
1291
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1292
|
-
`-._ `-.__.-' _.-'
|
1293
|
-
`-._ _.-'
|
1294
|
-
`-.__.-'
|
1295
|
-
|
1296
|
-
[80732] 22 Sep 02:01:10.785 # Server started, Redis version 2.8.16
|
1297
|
-
[80732] 22 Sep 02:01:10.785 * The server is now ready to accept connections on port 9736
|
1298
|
-
[80732] 22 Sep 02:01:10.787 - 0 clients connected (0 slaves), 952944 bytes in use
|
1299
|
-
[80732] 22 Sep 02:01:15.875 - 0 clients connected (0 slaves), 952944 bytes in use
|
1300
|
-
[80732] 22 Sep 02:01:19.870 - Accepted ::1:62117
|
1301
|
-
[80732] 22 Sep 02:01:20.920 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1302
|
-
[80732] 22 Sep 02:01:20.920 - 1 clients connected (0 slaves), 970736 bytes in use
|
1303
|
-
[80732] 22 Sep 02:01:25.967 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1304
|
-
[80732] 22 Sep 02:01:25.967 - 1 clients connected (0 slaves), 970736 bytes in use
|
1305
|
-
[81026] 22 Sep 02:03:45.954 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1306
|
-
_._
|
1307
|
-
_.-``__ ''-._
|
1308
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1309
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1310
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1311
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1312
|
-
| `-._ `._ / _.-' | PID: 81026
|
1313
|
-
`-._ `-._ `-./ _.-' _.-'
|
1314
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1315
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1316
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1317
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1318
|
-
| `-._`-._ _.-'_.-' |
|
1319
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1320
|
-
`-._ `-.__.-' _.-'
|
1321
|
-
`-._ _.-'
|
1322
|
-
`-.__.-'
|
1323
|
-
|
1324
|
-
[81026] 22 Sep 02:03:45.967 # Server started, Redis version 2.8.16
|
1325
|
-
[81026] 22 Sep 02:03:45.967 * The server is now ready to accept connections on port 9736
|
1326
|
-
[81026] 22 Sep 02:03:46.962 - 0 clients connected (0 slaves), 952944 bytes in use
|
1327
|
-
[81026] 22 Sep 02:03:52.011 - 0 clients connected (0 slaves), 952944 bytes in use
|
1328
|
-
[81026] 22 Sep 02:03:57.040 - 0 clients connected (0 slaves), 952944 bytes in use
|
1329
|
-
[81026] 22 Sep 02:03:57.862 - Accepted ::1:62213
|
1330
|
-
[81026] 22 Sep 02:04:02.069 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1331
|
-
[81026] 22 Sep 02:04:02.069 - 1 clients connected (0 slaves), 970736 bytes in use
|
1332
|
-
[81250] 22 Sep 02:06:42.116 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1333
|
-
_._
|
1334
|
-
_.-``__ ''-._
|
1335
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1336
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1337
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1338
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1339
|
-
| `-._ `._ / _.-' | PID: 81250
|
1340
|
-
`-._ `-._ `-./ _.-' _.-'
|
1341
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1342
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1343
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1344
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1345
|
-
| `-._`-._ _.-'_.-' |
|
1346
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1347
|
-
`-._ `-.__.-' _.-'
|
1348
|
-
`-._ _.-'
|
1349
|
-
`-.__.-'
|
1350
|
-
|
1351
|
-
[81250] 22 Sep 02:06:42.118 # Server started, Redis version 2.8.16
|
1352
|
-
[81250] 22 Sep 02:06:42.118 * The server is now ready to accept connections on port 9736
|
1353
|
-
[81250] 22 Sep 02:06:42.120 - 0 clients connected (0 slaves), 952944 bytes in use
|
1354
|
-
[81250] 22 Sep 02:06:47.161 - 0 clients connected (0 slaves), 952944 bytes in use
|
1355
|
-
[81250] 22 Sep 02:06:52.218 - 0 clients connected (0 slaves), 952944 bytes in use
|
1356
|
-
[81250] 22 Sep 02:06:52.885 - Accepted ::1:62349
|
1357
|
-
[81250] 22 Sep 02:06:57.247 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1358
|
-
[81250] 22 Sep 02:06:57.248 - 1 clients connected (0 slaves), 970736 bytes in use
|
1359
|
-
[81376] 22 Sep 02:08:21.461 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1360
|
-
_._
|
1361
|
-
_.-``__ ''-._
|
1362
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1363
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1364
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1365
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1366
|
-
| `-._ `._ / _.-' | PID: 81376
|
1367
|
-
`-._ `-._ `-./ _.-' _.-'
|
1368
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1369
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1370
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1371
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1372
|
-
| `-._`-._ _.-'_.-' |
|
1373
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1374
|
-
`-._ `-.__.-' _.-'
|
1375
|
-
`-._ _.-'
|
1376
|
-
`-.__.-'
|
1377
|
-
|
1378
|
-
[81376] 22 Sep 02:08:21.463 # Server started, Redis version 2.8.16
|
1379
|
-
[81376] 22 Sep 02:08:21.463 * The server is now ready to accept connections on port 9736
|
1380
|
-
[81376] 22 Sep 02:08:21.463 - 0 clients connected (0 slaves), 952944 bytes in use
|
1381
|
-
[81376] 22 Sep 02:08:26.507 - 0 clients connected (0 slaves), 952944 bytes in use
|
1382
|
-
[81376] 22 Sep 02:08:31.541 - 0 clients connected (0 slaves), 952944 bytes in use
|
1383
|
-
[81376] 22 Sep 02:08:32.183 - Accepted ::1:62463
|
1384
|
-
[81376] 22 Sep 02:08:36.570 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1385
|
-
[81376] 22 Sep 02:08:36.570 - 1 clients connected (0 slaves), 970736 bytes in use
|
1386
|
-
[81376] 22 Sep 02:08:41.599 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1387
|
-
[81376] 22 Sep 02:08:41.599 - 1 clients connected (0 slaves), 970736 bytes in use
|
1388
|
-
[83410] 22 Sep 12:06:18.602 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1389
|
-
_._
|
1390
|
-
_.-``__ ''-._
|
1391
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1392
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1393
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1394
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1395
|
-
| `-._ `._ / _.-' | PID: 83410
|
1396
|
-
`-._ `-._ `-./ _.-' _.-'
|
1397
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1398
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1399
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1400
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1401
|
-
| `-._`-._ _.-'_.-' |
|
1402
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1403
|
-
`-._ `-.__.-' _.-'
|
1404
|
-
`-._ _.-'
|
1405
|
-
`-.__.-'
|
1406
|
-
|
1407
|
-
[83410] 22 Sep 12:06:18.616 # Server started, Redis version 2.8.16
|
1408
|
-
[83410] 22 Sep 12:06:18.617 * The server is now ready to accept connections on port 9736
|
1409
|
-
[83410] 22 Sep 12:06:19.609 - 0 clients connected (0 slaves), 952944 bytes in use
|
1410
|
-
[83410] 22 Sep 12:06:24.663 - 0 clients connected (0 slaves), 952944 bytes in use
|
1411
|
-
[83669] 22 Sep 12:20:01.064 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1412
|
-
_._
|
1413
|
-
_.-``__ ''-._
|
1414
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1415
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1416
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1417
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1418
|
-
| `-._ `._ / _.-' | PID: 83669
|
1419
|
-
`-._ `-._ `-./ _.-' _.-'
|
1420
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1421
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1422
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1423
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1424
|
-
| `-._`-._ _.-'_.-' |
|
1425
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1426
|
-
`-._ `-.__.-' _.-'
|
1427
|
-
`-._ _.-'
|
1428
|
-
`-.__.-'
|
1429
|
-
|
1430
|
-
[83669] 22 Sep 12:20:01.066 # Server started, Redis version 2.8.16
|
1431
|
-
[83669] 22 Sep 12:20:01.066 * The server is now ready to accept connections on port 9736
|
1432
|
-
[83669] 22 Sep 12:20:01.066 - 0 clients connected (0 slaves), 952944 bytes in use
|
1433
|
-
[83669] 22 Sep 12:20:06.123 - 0 clients connected (0 slaves), 952944 bytes in use
|
1434
|
-
[84018] 22 Sep 12:26:28.382 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1435
|
-
_._
|
1436
|
-
_.-``__ ''-._
|
1437
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1438
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1439
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1440
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1441
|
-
| `-._ `._ / _.-' | PID: 84018
|
1442
|
-
`-._ `-._ `-./ _.-' _.-'
|
1443
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1444
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1445
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1446
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1447
|
-
| `-._`-._ _.-'_.-' |
|
1448
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1449
|
-
`-._ `-.__.-' _.-'
|
1450
|
-
`-._ _.-'
|
1451
|
-
`-.__.-'
|
1452
|
-
|
1453
|
-
[84018] 22 Sep 12:26:28.383 # Server started, Redis version 2.8.16
|
1454
|
-
[84018] 22 Sep 12:26:28.383 * The server is now ready to accept connections on port 9736
|
1455
|
-
[84018] 22 Sep 12:26:28.385 - 0 clients connected (0 slaves), 952944 bytes in use
|
1456
|
-
[84018] 22 Sep 12:26:33.429 - 0 clients connected (0 slaves), 952944 bytes in use
|
1457
|
-
[84126] 22 Sep 12:27:39.608 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1458
|
-
_._
|
1459
|
-
_.-``__ ''-._
|
1460
|
-
_.-`` `. `_. ''-._ Redis 2.8.16 (00000000/0) 64 bit
|
1461
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1462
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1463
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1464
|
-
| `-._ `._ / _.-' | PID: 84126
|
1465
|
-
`-._ `-._ `-./ _.-' _.-'
|
1466
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1467
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1468
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1469
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1470
|
-
| `-._`-._ _.-'_.-' |
|
1471
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1472
|
-
`-._ `-.__.-' _.-'
|
1473
|
-
`-._ _.-'
|
1474
|
-
`-.__.-'
|
1475
|
-
|
1476
|
-
[84126] 22 Sep 12:27:39.610 # Server started, Redis version 2.8.16
|
1477
|
-
[84126] 22 Sep 12:27:39.610 * The server is now ready to accept connections on port 9736
|
1478
|
-
[84126] 22 Sep 12:27:39.610 - 0 clients connected (0 slaves), 952944 bytes in use
|
1479
|
-
[84126] 22 Sep 12:27:44.685 - 0 clients connected (0 slaves), 952944 bytes in use
|
1480
|
-
[84126] 22 Sep 12:27:47.370 - Accepted ::1:53479
|
1481
|
-
[84126] 22 Sep 12:27:49.723 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1482
|
-
[84126] 22 Sep 12:27:49.723 - 1 clients connected (0 slaves), 970736 bytes in use
|
1483
|
-
[84126] 22 Sep 12:27:54.763 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1484
|
-
[84126] 22 Sep 12:27:54.763 - 1 clients connected (0 slaves), 970736 bytes in use
|
1485
|
-
[7720] 26 Sep 11:49:04.141 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1486
|
-
_._
|
1487
|
-
_.-``__ ''-._
|
1488
|
-
_.-`` `. `_. ''-._ Redis 2.8.17 (00000000/0) 64 bit
|
1489
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1490
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1491
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1492
|
-
| `-._ `._ / _.-' | PID: 7720
|
1493
|
-
`-._ `-._ `-./ _.-' _.-'
|
1494
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1495
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1496
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1497
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1498
|
-
| `-._`-._ _.-'_.-' |
|
1499
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1500
|
-
`-._ `-.__.-' _.-'
|
1501
|
-
`-._ _.-'
|
1502
|
-
`-.__.-'
|
1503
|
-
|
1504
|
-
[7720] 26 Sep 11:49:04.152 # Server started, Redis version 2.8.17
|
1505
|
-
[7720] 26 Sep 11:49:04.152 * The server is now ready to accept connections on port 9736
|
1506
|
-
[7720] 26 Sep 11:49:05.148 - 0 clients connected (0 slaves), 952944 bytes in use
|
1507
|
-
[7720] 26 Sep 11:49:10.192 - 0 clients connected (0 slaves), 952944 bytes in use
|
1508
|
-
[7720] 26 Sep 11:49:15.243 - 0 clients connected (0 slaves), 952944 bytes in use
|
1509
|
-
[7720] 26 Sep 11:49:16.382 - Accepted ::1:58845
|
1510
|
-
[7720] 26 Sep 11:49:20.286 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1511
|
-
[7720] 26 Sep 11:49:20.286 - 1 clients connected (0 slaves), 970736 bytes in use
|
1512
|
-
[57004] 02 Oct 03:33:49.639 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1513
|
-
_._
|
1514
|
-
_.-``__ ''-._
|
1515
|
-
_.-`` `. `_. ''-._ Redis 2.8.17 (00000000/0) 64 bit
|
1516
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1517
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1518
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1519
|
-
| `-._ `._ / _.-' | PID: 57004
|
1520
|
-
`-._ `-._ `-./ _.-' _.-'
|
1521
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1522
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1523
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1524
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1525
|
-
| `-._`-._ _.-'_.-' |
|
1526
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1527
|
-
`-._ `-.__.-' _.-'
|
1528
|
-
`-._ _.-'
|
1529
|
-
`-.__.-'
|
1530
|
-
|
1531
|
-
[57004] 02 Oct 03:33:49.648 # Server started, Redis version 2.8.17
|
1532
|
-
[57004] 02 Oct 03:33:49.648 * The server is now ready to accept connections on port 9736
|
1533
|
-
[57004] 02 Oct 03:33:50.645 - 0 clients connected (0 slaves), 952944 bytes in use
|
1534
|
-
[57004] 02 Oct 03:33:55.682 - 0 clients connected (0 slaves), 952944 bytes in use
|
1535
|
-
[57004] 02 Oct 03:34:00.717 - 0 clients connected (0 slaves), 952944 bytes in use
|
1536
|
-
[57004] 02 Oct 03:34:00.969 - Accepted ::1:57442
|
1537
|
-
[57004] 02 Oct 03:34:05.756 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1538
|
-
[57004] 02 Oct 03:34:05.756 - 1 clients connected (0 slaves), 970736 bytes in use
|
1539
|
-
[57211] 02 Oct 03:40:44.207 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1540
|
-
_._
|
1541
|
-
_.-``__ ''-._
|
1542
|
-
_.-`` `. `_. ''-._ Redis 2.8.17 (00000000/0) 64 bit
|
1543
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1544
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1545
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1546
|
-
| `-._ `._ / _.-' | PID: 57211
|
1547
|
-
`-._ `-._ `-./ _.-' _.-'
|
1548
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1549
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1550
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1551
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1552
|
-
| `-._`-._ _.-'_.-' |
|
1553
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1554
|
-
`-._ `-.__.-' _.-'
|
1555
|
-
`-._ _.-'
|
1556
|
-
`-.__.-'
|
1557
|
-
|
1558
|
-
[57211] 02 Oct 03:40:44.209 # Server started, Redis version 2.8.17
|
1559
|
-
[57211] 02 Oct 03:40:44.209 * The server is now ready to accept connections on port 9736
|
1560
|
-
[57211] 02 Oct 03:40:44.209 - 0 clients connected (0 slaves), 952944 bytes in use
|
1561
|
-
[57211] 02 Oct 03:40:49.247 - 0 clients connected (0 slaves), 952944 bytes in use
|
1562
|
-
[57211] 02 Oct 03:40:54.282 - 0 clients connected (0 slaves), 952944 bytes in use
|
1563
|
-
[57211] 02 Oct 03:40:55.527 - Accepted ::1:57664
|
1564
|
-
[57211] 02 Oct 03:40:59.320 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1565
|
-
[57211] 02 Oct 03:40:59.320 - 1 clients connected (0 slaves), 970736 bytes in use
|
1566
|
-
[57211] 02 Oct 03:41:04.354 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1567
|
-
[57211] 02 Oct 03:41:04.354 - 1 clients connected (0 slaves), 970736 bytes in use
|
1568
|
-
[57332] 02 Oct 03:42:42.081 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1569
|
-
_._
|
1570
|
-
_.-``__ ''-._
|
1571
|
-
_.-`` `. `_. ''-._ Redis 2.8.17 (00000000/0) 64 bit
|
1572
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1573
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1574
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1575
|
-
| `-._ `._ / _.-' | PID: 57332
|
1576
|
-
`-._ `-._ `-./ _.-' _.-'
|
1577
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1578
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1579
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1580
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1581
|
-
| `-._`-._ _.-'_.-' |
|
1582
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1583
|
-
`-._ `-.__.-' _.-'
|
1584
|
-
`-._ _.-'
|
1585
|
-
`-.__.-'
|
1586
|
-
|
1587
|
-
[57332] 02 Oct 03:42:42.083 # Server started, Redis version 2.8.17
|
1588
|
-
[57332] 02 Oct 03:42:42.083 * The server is now ready to accept connections on port 9736
|
1589
|
-
[57332] 02 Oct 03:42:42.083 - 0 clients connected (0 slaves), 952944 bytes in use
|
1590
|
-
[57332] 02 Oct 03:42:47.129 - 0 clients connected (0 slaves), 952944 bytes in use
|
1591
|
-
[57332] 02 Oct 03:42:52.160 - 0 clients connected (0 slaves), 952944 bytes in use
|
1592
|
-
[57332] 02 Oct 03:42:53.074 - Accepted ::1:57715
|
1593
|
-
[57332] 02 Oct 03:42:57.192 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1594
|
-
[57332] 02 Oct 03:42:57.192 - 1 clients connected (0 slaves), 970736 bytes in use
|
1595
|
-
[57332] 02 Oct 03:43:02.222 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1596
|
-
[57332] 02 Oct 03:43:02.222 - 1 clients connected (0 slaves), 970736 bytes in use
|
1597
|
-
[57613] 02 Oct 03:47:54.971 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1598
|
-
_._
|
1599
|
-
_.-``__ ''-._
|
1600
|
-
_.-`` `. `_. ''-._ Redis 2.8.17 (00000000/0) 64 bit
|
1601
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1602
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1603
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1604
|
-
| `-._ `._ / _.-' | PID: 57613
|
1605
|
-
`-._ `-._ `-./ _.-' _.-'
|
1606
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1607
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1608
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1609
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1610
|
-
| `-._`-._ _.-'_.-' |
|
1611
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1612
|
-
`-._ `-.__.-' _.-'
|
1613
|
-
`-._ _.-'
|
1614
|
-
`-.__.-'
|
1615
|
-
|
1616
|
-
[57613] 02 Oct 03:47:54.973 # Server started, Redis version 2.8.17
|
1617
|
-
[57613] 02 Oct 03:47:54.973 * The server is now ready to accept connections on port 9736
|
1618
|
-
[57613] 02 Oct 03:47:54.973 - 0 clients connected (0 slaves), 952944 bytes in use
|
1619
|
-
[57613] 02 Oct 03:48:00.021 - 0 clients connected (0 slaves), 952944 bytes in use
|
1620
|
-
[57613] 02 Oct 03:48:04.783 - Accepted ::1:57859
|
1621
|
-
[57613] 02 Oct 03:48:05.070 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1622
|
-
[57613] 02 Oct 03:48:05.070 - 1 clients connected (0 slaves), 970736 bytes in use
|
1623
|
-
[57613] 02 Oct 03:48:10.132 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1624
|
-
[57613] 02 Oct 03:48:10.132 - 1 clients connected (0 slaves), 970736 bytes in use
|
1625
|
-
[57613] 02 Oct 03:48:15.159 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1626
|
-
[57613] 02 Oct 03:48:15.159 - 1 clients connected (0 slaves), 970736 bytes in use
|
1627
|
-
[78102] 03 Oct 12:26:24.186 * Increased maximum number of open files to 10032 (it was originally set to 256).
|
1628
|
-
_._
|
1629
|
-
_.-``__ ''-._
|
1630
|
-
_.-`` `. `_. ''-._ Redis 2.8.17 (00000000/0) 64 bit
|
1631
|
-
.-`` .-```. ```\/ _.,_ ''-._
|
1632
|
-
( ' , .-` | `, ) Running in stand alone mode
|
1633
|
-
|`-._`-...-` __...-.``-._|'` _.-'| Port: 9736
|
1634
|
-
| `-._ `._ / _.-' | PID: 78102
|
1635
|
-
`-._ `-._ `-./ _.-' _.-'
|
1636
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1637
|
-
| `-._`-._ _.-'_.-' | http://redis.io
|
1638
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1639
|
-
|`-._`-._ `-.__.-' _.-'_.-'|
|
1640
|
-
| `-._`-._ _.-'_.-' |
|
1641
|
-
`-._ `-._`-.__.-'_.-' _.-'
|
1642
|
-
`-._ `-.__.-' _.-'
|
1643
|
-
`-._ _.-'
|
1644
|
-
`-.__.-'
|
1645
|
-
|
1646
|
-
[78102] 03 Oct 12:26:24.199 # Server started, Redis version 2.8.17
|
1647
|
-
[78102] 03 Oct 12:26:24.200 * The server is now ready to accept connections on port 9736
|
1648
|
-
[78102] 03 Oct 12:26:25.194 - 0 clients connected (0 slaves), 952944 bytes in use
|
1649
|
-
[78102] 03 Oct 12:26:30.307 - 0 clients connected (0 slaves), 952944 bytes in use
|
1650
|
-
[78102] 03 Oct 12:26:35.344 - 0 clients connected (0 slaves), 952944 bytes in use
|
1651
|
-
[78102] 03 Oct 12:26:35.576 - Accepted ::1:51087
|
1652
|
-
[78102] 03 Oct 12:26:40.382 - DB 0: 2 keys (0 volatile) in 4 slots HT.
|
1653
|
-
[78102] 03 Oct 12:26:40.383 - 1 clients connected (0 slaves), 970736 bytes in use
|