Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/development/utilities.md')
-rw-r--r--doc/development/utilities.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/development/utilities.md b/doc/development/utilities.md
index b9b4c6448e2..3f6187a4c2e 100644
--- a/doc/development/utilities.md
+++ b/doc/development/utilities.md
@@ -188,6 +188,24 @@ Refer to [`strong_memoize.rb`](https://gitlab.com/gitlab-org/gitlab/-/blob/maste
end
```
+ Alternatively, use the `strong_memoize_attr` helper to memoize the method for you:
+
+ ```ruby
+ class Find
+ include Gitlab::Utils::StrongMemoize
+
+ def result
+ search
+ end
+ strong_memoize_attr :result
+
+ strong_memoize_attr :enabled?, :enabled
+ def enabled?
+ Feature.enabled?(:some_feature)
+ end
+ end
+ ```
+
- Clear memoization
```ruby