2012-06-07 75 views
2

//服務器設置....如何動態發佈和訂閱頻道?

//Store using Redis .. 


this is the part of the code, now i have to send the stored data to other clients connected,the case is 'n' no.of application with 'n' no.of clients, so i have to create channels here dynamically. am asking u to help me by giving ideas for creating dynamic channel name for pub/sub. 
+1

改善問題,否則這個問題將得到我的投票也被關閉。 – Alfred

回答

2

這不是Redis處理的內容。您需要通過應用程序層來保護對Redis pub/sub的訪問。如果你想讓人們直接連接到Redis,並且仍然保護每個用戶的頻道,我相信你運氣不好。

+0

:如果我想確保只有某些用戶可以訂閱某些頻道(基於其服務器端權限),該怎麼辦?排除redis pub/sub ... –

+0

您是否在談論它們直接連接到Redis?如果是這樣,你不能那樣做。如果不是,你必須提供更多細節,因爲你的問題非常模糊。 –

+0

@ brandon-tilley:不直接連接到redis,只是我想存儲通過套接字在redis中傳輸的數據.....並通過redis發佈和訂閱.. –