1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/lib/active_support
Godfrey Chan ccf8f27ddd Revert "Merge pull request #14269 from arthurnn/expanded_key_array"
This reverts commit 475c96589c, reversing
changes made to 705915ab5c.

We decided that this is not worth busting everyone's cache as this
seems like a very unlikely problem. The problem only occurs when the
user is 1) not using a namespace, or 2) using the same namesapce for
different *kinds* of cache items. The recommended "fix" is to put
those cache items into their own namspace:

    id = 1
    Rails.cache.fetch(id, namespace: "user"){ User.find(id) }

    ids = [1]
    Rails.cache.fetch(ids, namespace: "users"){ User.find(ids) }

See the discussion on #14269 for details.
2014-03-04 17:58:58 -08:00
..
cache Extract local cache middleware 2014-02-23 14:18:53 -05:00
concurrency
core_ext Fix concerning module reference [ci skip] 2014-02-26 21:45:54 -03:00
dependencies remove unnecessary always-nil var from #compact 2013-01-01 20:35:43 +03:00
deprecation renames the :abort deprecation behaviour to :raise 2013-08-13 01:44:52 +02:00
inflector speed up underscore in cases that don't need to do anything 2014-02-26 15:09:18 -08:00
json Add support for JSON time_precision to Time and DateTime 2014-01-26 21:25:54 +00:00
locale Remove i18n symbol dependency 2013-01-17 15:21:26 +00:00
log_subscriber Add missing require 2013-07-01 20:49:17 -03:00
multibyte Fix tidy_bytes for JRuby 2014-02-10 08:10:44 -06:00
notifications use a thread local rather than a queue so events are in the right order 2013-10-30 10:33:36 -07:00
number_helper Fix AS::NumberHelper results with large precisions 2013-12-20 16:26:35 +09:00
testing travel_to travels back and re-raises if the block raises 2014-02-18 10:25:11 +01:00
values Maintain current timezone when changing time during DST overlap 2014-01-26 16:56:33 +00:00
xml_mini change merge to merge! in AS on new hashes 2013-04-02 11:13:56 +05:30
all.rb Clean up require ‘active_support/deprecation’ and remove circular require 2013-11-14 12:59:56 +04:00
backtrace_cleaner.rb Some assorted fixes for the 4.1 release notes: 2013-12-17 08:39:07 -08:00
benchmarkable.rb Remove ActiveSupport::Benchmarkable#silence was deprecated. 2013-06-01 21:23:19 +09:00
builder.rb
cache.rb Revert "Merge pull request #14269 from arthurnn/expanded_key_array" 2014-03-04 17:58:58 -08:00
callbacks.rb Fix few typos in the documentation [ci skip] 2013-12-21 18:59:55 +01:00
concern.rb Introduce Concern#class_methods and Kernel#concern 2014-02-23 12:06:23 -07:00
configurable.rb Make sure multiline string is not accepted by the regexp 2013-12-19 17:28:19 -02:00
core_ext.rb Remove deprecated Logger core extensions (core_ext/logger.rb) 2013-07-03 13:54:34 -03:00
dependencies.rb Merge branch 'master' of github.com:rails/docrails 2014-02-09 23:33:55 +05:30
deprecation.rb Changing deprecation_horizon to be Rails 4.2 2013-08-24 23:34:43 -04:00
descendants_tracker.rb
duration.rb Fix segmentation fault in Ruby 2.0.0-p353. 2013-11-30 15:12:12 +02:00
file_update_checker.rb clean up some warnings on trunk ruby 2013-10-31 11:47:51 -07:00
file_watcher.rb
gzip.rb added compress options for gzip 2013-02-10 20:01:42 +09:00
hash_with_indifferent_access.rb Consistence in the block style 2014-01-17 00:30:41 -02:00
i18n.rb Require different core extensions correctly. 2013-05-09 12:32:02 +05:30
i18n_railtie.rb Fix typo [ci skip] 2013-12-21 15:03:32 -02:00
inflections.rb docs, hide inflector comment targeting only contributors. [ci skip] 2014-02-11 09:08:16 +01:00
inflector.rb
json.rb
key_generator.rb Fix secrets.yml path in exception message 2014-01-20 08:58:43 -02:00
lazy_load_hooks.rb changed rails -> Rails at two places 2013-05-09 23:27:15 +05:30
log_subscriber.rb Extract a base class from ActiveSupport::LogSubscriber 2013-04-16 14:39:22 +02:00
logger.rb Remove deprecated cattr_* requires 2013-12-03 00:28:15 +02:00
logger_silence.rb Revert "Make sure that ActiveSupport::Logger includes the Logger extensions from core_ext/logger" (some confusion over deprecation) 2012-12-21 19:35:10 +01:00
message_encryptor.rb Allow session serializer key in config.session_store 2014-01-29 17:05:00 +01:00
message_verifier.rb PR #10635 introduces rescue from ArgumentError thrown by Base64.strict_decode64. 2013-12-12 22:15:42 +05:30
multibyte.rb Replace comments' non-breaking spaces with spaces 2012-12-04 22:11:54 -08:00
notifications.rb Stop using method missing for singleton delegation. 2013-11-06 16:32:47 -08:00
number_helper.rb Nodoc missing number helper classes in AS [ci skip] 2013-12-11 20:01:54 -02:00
option_merger.rb
ordered_hash.rb Consistence in the block style 2014-01-17 00:30:41 -02:00
ordered_options.rb Fixed grammar error in ordered_options documention. 2013-08-17 04:42:15 -07:00
per_thread_registry.rb Perf: save ~9% of object allocations on heavy requests. 2013-12-12 18:53:32 -07:00
proxy_object.rb fix reference to ActiveSupport::ProxyObject 2013-01-13 23:59:14 -06:00
rails.rb
railtie.rb Revert "Set the default timezone after the initialization since the configuration" 2013-01-22 09:29:20 -02:00
rescuable.rb Remove deprecated Proc#bind with no replacement. 2013-07-01 22:38:28 -03:00
string_inquirer.rb
subscriber.rb Stop using method missing for singleton delegation. 2013-11-06 16:32:47 -08:00
tagged_logging.rb added missing require 2013-12-02 19:52:01 +01:00
test_case.rb Add #travel and #travel_to to AS::TestCase 2013-11-20 16:05:02 +07:00
time.rb Clean up 'active_support/time' requires 2012-12-11 12:23:30 +00:00
time_with_zone.rb Maintain the current timezone in wrap_with_time_zone 2014-01-31 17:13:12 +00:00
version.rb update version to 4.2.0.alpha 2014-02-23 13:14:43 +01:00
xml_mini.rb Fix breakage in XmlMini 2013-12-23 14:04:16 +09:00