在 Windows 系统上将 Redis 与任何 Java IDE 一起使用
Using Redis with any Java IDE on a Windows system
我发现很难在 spring 启动时配置 spring 会话。我已经看到很多使用 Redis 和使用 gem-fire
和 H2 JDBC
的实现没有产生任何结果。我可以在我的 Windows 系统上将 Redis 与 IntelliJ 一起使用吗,因为我听说 Windows 不支持它?
确实Windows上没有对Redis的官方支持。来自官方文档:
There is no official support for Windows builds, but Microsoft develops and maintains a Win-64 port of Redis.
但如前所述,Microsoft 一直在维护它的 own version for over a year now, where you can find new releases 以及在 Windows 上明确定义的设置步骤。
教程:
还有一个tutorial on how to build Redis using visual studio
. You also should look into the JetBrains
plugin iedis。
这是 Redis with Spring, also here's an implementation of Spring Session with Redis 的教程。
我发现很难在 spring 启动时配置 spring 会话。我已经看到很多使用 Redis 和使用 gem-fire
和 H2 JDBC
的实现没有产生任何结果。我可以在我的 Windows 系统上将 Redis 与 IntelliJ 一起使用吗,因为我听说 Windows 不支持它?
确实Windows上没有对Redis的官方支持。来自官方文档:
There is no official support for Windows builds, but Microsoft develops and maintains a Win-64 port of Redis.
但如前所述,Microsoft 一直在维护它的 own version for over a year now, where you can find new releases 以及在 Windows 上明确定义的设置步骤。
教程:
还有一个tutorial on how to build Redis using visual studio
. You also should look into the JetBrains
plugin iedis。
这是 Redis with Spring, also here's an implementation of Spring Session with Redis 的教程。