2

I am using openLDAP storing users. where should I keep user session details as it we need to track few user details for a session. What is Ideal place to store user sessions?

Thank you...

satish Bhor
  • 101
  • 6
  • flagging it as off-topic because: Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. – bitoiu Feb 05 '15 at 12:52
  • @bitoiu No off-site resource is being requested here. The question is a simple choice between OpenLDAP and 'redis'. – user207421 Feb 08 '15 at 23:33
  • "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic"- in this case a library or tool. – bitoiu Feb 09 '15 at 09:49

1 Answers1

4

Despite the fact that the question is off-topic I'd use redis as it is fast and simple. You'd only need a key-value store for keeping session information and not a fully grown directory server. LDAP might be fast in getting Information out of it, but you would need to put the information in first and update those informations on a regular basis which isn't what LDAP has been designed for.

heiglandreas
  • 3,803
  • 1
  • 17
  • 23