ShiroRedisProperties.kt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.gxzc.zen.umps.config
  2. /**
  3. *
  4. * @author NorthLan
  5. * @date 2018/4/24
  6. * @url https://noahlan.com
  7. */
  8. class ShiroRedisProperties {
  9. /**
  10. * Database index used by the connection factory.
  11. */
  12. var database = 1
  13. /**
  14. * Redis url, which will overrule host, port and password if set.
  15. */
  16. var url: String? = null
  17. /**
  18. * Redis server host.
  19. */
  20. var host = "localhost"
  21. /**
  22. * Login password of the redis server.
  23. */
  24. var password: String? = null
  25. /**
  26. * Redis server port.
  27. */
  28. var port = 6379
  29. /**
  30. * Connection timeout in milliseconds.
  31. */
  32. var timeout: Int = 0
  33. /**
  34. * Session Prefix
  35. */
  36. var sessionPrefix: String? = null
  37. /**
  38. * Seconds
  39. */
  40. var sessionTime: Long = 0
  41. /**
  42. * Redis cache key prefix
  43. */
  44. var cachePrefix: String? = null
  45. /**
  46. * Redis cache expires (Seconds)
  47. */
  48. var cacheTime: Long = 0
  49. var pool: Pool = Pool()
  50. class Pool {
  51. /**
  52. * Max number of "idle" connections in the pool. Use a negative value to indicate
  53. * an unlimited number of idle connections.
  54. */
  55. var maxIdle = 8
  56. /**
  57. * Target for the minimum number of idle connections to maintain in the pool. This
  58. * setting only has an effect if it is positive.
  59. */
  60. var minIdle = 0
  61. /**
  62. * Max number of connections that can be allocated by the pool at a given time.
  63. * Use a negative value for no limit.
  64. */
  65. var maxActive = 8
  66. /**
  67. * Maximum amount of time (in milliseconds) a connection allocation should block
  68. * before throwing an exception when the pool is exhausted. Use a negative value
  69. * to block indefinitely.
  70. */
  71. var maxWait = -1
  72. }
  73. }