redis tag

21 questions


1 answers
53 views
0
To search for sentences in redis

I'd like to put a comment in redis and search for the full text.The types that redis can handle can be String or List, but it seems that the search for strings is done using the key.In the first place...

1 years ago

1 answers
48 views
0
Sending Commands to Multiple Nodes in an ioredis Cluster

Ioredis would like to send commands to multiple nodes in the cluster (such as flushall and keys).After reviewing the following documentation, I was going to use the node list that I got from Cluster#n...

1 years ago

1 answers
49 views
0
I want to know grammar names like process([command]){read}

While reading Ruby's Redis client source code (redis 4.0.1), lib/redis/client.rbto a file named def call (command) reply=process([command]){read} raise reply if reply.is_a? (CommandError)......It says...

1 years ago

2 answers
103 views
0
Why use memcached or redis instead of cookies when saving sessions?

By default, Rails saves sessions to cookies.However, I often hear cases where you use memcached or redis because you don't like it.However, I always don't know why cookies are not good, so I'm muddled...


2 answers
79 views
0
AttributeError in Python 3.6: 'float' object has no attribute 'items'

We are currently using the Django framework to launch the server.However, since yesterday, the following error has occurred:File/usr/local/lib/python 3.6/site-packages/redis/_compat.py, line 123, inte...

1 years ago

1 answers
94 views
0
I want to turn off the redis persistence setting.

I use Redis 3.2.10.Due to performance issues, I would like to process only memory instead of perpetuating it, but as stated in the configuration file documentation, saveis written and originally confi...

1 years ago

3 answers
98 views
0
About the chat application using Socket.io

I am creating a chat app like LINE with the html5 hybrid app (I use Monaca).I plan to use node.js, socket.io, and redis.When you search socket.io Chat on Google, you can find code that acts as a chat ...

1 years ago

1 answers
90 views
0
Reduce the number of sessions between redis and php

I'm using redis from php.$redis=newRedis();$redis->connect('127.0.0.1',6379);When you session to redis, as shown in , the number of sessions increases each time the php program is read.In other wor...

1 years ago

2 answers
93 views
0
What should I do with logic when the purchase list product is deleted?

Product ------FK----> Purchase ListIf the product on the purchase list is deleted, the purchase list is supposed to be deleted. Is it the right way not to delete the purchase list?Or is it right to...


2 answers
87 views
0
This is a question about using Redis and mongoDB together.

First of all, I am implementing web messenger with node.js and socke.io.As I looked it up, I know that Redis is a NOSQL-based DB like Mongo, but there are cases where it is mixed with Mongo, so why is...

« - 2 - »

© 2024 OneMinuteCode. All rights reserved.