Back to Graphql Ruby

Redis Backend

guides/operation_store/redis_backend.md

2.6.1409 B
Original Source

OperationStore can use Redis to store persisted queries. Pass a redis: option when adding the plugin:

ruby
class MySchema < GraphQL::Schema
  use GraphQL::Pro::OperationStore, redis: Redis.new
end

(You can initialize Redis with any options you need.)

Note: Be sure that this Redis instance is configured as a persistent database, not as a cache. You don't want it to throw away old keys!