linked_rails 0.0.4.pre.gc3dfc6914 → 0.0.4.pre.gd8464437f

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4c46a1b1dd79f52ab737125d44fbf850d58ce90cfedfda01fc41f09f23479afd
4
- data.tar.gz: 21772f28097f492ea3593f79e0c1ecaddaacdb91e04e62ac3c08497aacb1afbb
3
+ metadata.gz: d0469495fc05ef96aed75db4a9a3f1cf7e1ed7dfed36760c6960d370369515c1
4
+ data.tar.gz: f3ed8428a3ca3421c43cb6e702a3353eedfb5bcc09db67a85670ebf37cbd8aaa
5
5
  SHA512:
6
- metadata.gz: d17d949a1683172351c183f24be5174d36a96dba396a417a58448c5d72a22a5e833d7db8ca0056ec08cc25ddbc2ef5ac5da02a4bd7598b279336fb46fe95c47f
7
- data.tar.gz: ddb938f6a9d7c3b3bc148c5bc6153318f0508eb6c57f101ee47434c900709538caf3dde57ae00b0813b95a09ef109d534b6c2fc4d2447e1ee5bc4c5d7e0ab5fe
6
+ metadata.gz: 52a4634ca24036a3281671d4829ba527ccc5790c6e4c6d87bfc2b3208f88c3d00ca8db0370b4aeffc8d77da8629058999a6677923a002c5f5680a30d4cd89f1e
7
+ data.tar.gz: 4d48f8396c5a5209fbf9373362cca8efc693493ec650034359119d9a39809a9ba2511af80aa8820c3439aaf5156f143608e4361b3def860cc33119db180cb93c
@@ -167,8 +167,8 @@ module LinkedRails
167
167
  def move(from, to)
168
168
  Storage.hset(
169
169
  :persistent,
170
- :redirect,
171
- "#{from}*" => to
170
+ :redirect_prefix,
171
+ from => to
172
172
  )
173
173
 
174
174
  data = Storage.hget(:persistent, :manifest, from)
@@ -8,7 +8,7 @@ module LinkedRails
8
8
  resource: iri,
9
9
  resourceType: resource_type
10
10
  }
11
- id = Storage.xadd(:stream, entry)
11
+ id = Storage.xadd(:stream, LinkedRails.cache_stream, entry)
12
12
 
13
13
  raise('No message id returned, implies failure') if id.blank?
14
14
  end
@@ -17,8 +17,6 @@ module LinkedRails
17
17
  true
18
18
  end
19
19
 
20
- private
21
-
22
20
  def publish_create
23
21
  publish_message('io.ontola.transactions.Created')
24
22
  end
@@ -31,14 +29,14 @@ module LinkedRails
31
29
  publish_message('io.ontola.transactions.Deleted')
32
30
  end
33
31
 
32
+ private
33
+
34
34
  def publish_message(type)
35
35
  LinkedRails::InvalidationStreamWorker.perform_now(type, iri.to_s, self.class.iri.to_s)
36
36
  rescue StandardError
37
37
  LinkedRails::InvalidationStreamWorker.perform_later(type, iri.to_s, self.class.iri.to_s)
38
38
  end
39
39
 
40
- private
41
-
42
40
  def should_publish_changes
43
41
  cacheable? && !Rails.env.test?
44
42
  end
@@ -11,7 +11,8 @@ module LinkedRails
11
11
  }.freeze
12
12
  KEYS = {
13
13
  manifest: 'cache:Manifest',
14
- redirect: 'cache:Redirect'
14
+ redirect_exact: 'cache:Redirect:Exact',
15
+ redirect_prefix: 'cache:Redirect:Prefix'
15
16
  }.freeze
16
17
 
17
18
  class << self
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linked_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4.pre.gc3dfc6914
4
+ version: 0.0.4.pre.gd8464437f
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arthur Dingemans