GithubHelp home page GithubHelp logo

Support Redis Cluster about phalcon HOT 13 OPEN

phalcon avatar phalcon commented on June 15, 2024
Support Redis Cluster

from phalcon.

Comments (13)

Jurigag avatar Jurigag commented on June 15, 2024 1

I guess not.

from phalcon.

Jurigag avatar Jurigag commented on June 15, 2024 1

You can always do PR, feel free to do it.

from phalcon.

sergeyklay avatar sergeyklay commented on June 15, 2024

πŸ‘

from phalcon.

smdevdk avatar smdevdk commented on June 15, 2024

Any progress?

from phalcon.

lubberscorrado avatar lubberscorrado commented on June 15, 2024

+1

from phalcon.

jm85martins avatar jm85martins commented on June 15, 2024

+1

from phalcon.

srveiga avatar srveiga commented on June 15, 2024

+1

from phalcon.

AndrejJanoga avatar AndrejJanoga commented on June 15, 2024

It this feature already in some roadmap?

from phalcon.

AndrejJanoga avatar AndrejJanoga commented on June 15, 2024

I don't want to sound rude, but technically, it's a blocker and still unresolved. If you want to use Phalcon with Redis for bigger project, you must to use Redis Cluster (because failover, HA, etc.).

from phalcon.

jesseforrest avatar jesseforrest commented on June 15, 2024

This is definitely not a long term solution, but if you have PHPRedis configured to handle sessions with RedisCluster then you can cheat a little by leveraging the abstract class Phalcon\Session\Adapter since it uses the superglobal $_SESSION. I was able to create a class that extends it and let PHPRedis automatically handle session handling. For example, I created:

<?php
class RedisClusterSession extends Phalcon\Session\Adapter
{
}

Then in index.php:

// Setup the session component
$di->setShared('session', function () {
        $session = new RedisClusterSession();
        $session->start();
        return $session;
});

from phalcon.

niden avatar niden commented on June 15, 2024

Closing in favor of phalcon/cphalcon#13855. Will revisit if the community votes for it, or in later versions.

from phalcon.

yergo avatar yergo commented on June 15, 2024

I'm considering contributing to this issue. Got off track by missing RedisCluster adapter about... 7 years ago? It's crazy its not yet implemented. Is there a reason you are not implementing this? We don't have volounteers or there is a hidden issue in here?

from phalcon.

niden avatar niden commented on June 15, 2024

@yergo Lack of knowledge and volunteers. To get this going I will need to study on how the cluster works and then write the implementation.

If you are interested in making an adapter for this, you can try it in the https://phalcon/phalcon repository first with a PHP implementation. Then it would be easy to port it to cphalcon. The Storage classes work just fine for phalcon/phalcon

from phalcon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.