1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Store time in RFC3339Nano to keep nanoseconds

This commit is contained in:
theo-delaune-argus
2020-03-12 16:33:50 +01:00
parent 1c4dd844c4
commit fea610f7b4
4 changed files with 7 additions and 6 deletions

View File

@ -72,14 +72,14 @@ var _ = Describe("Cmd", func() {
})
It("supports time.Time", func() {
tm := time.Date(2019, 01, 01, 0, 0, 0, 0, time.UTC)
tm := time.Date(2019, 01, 01, 9, 45, 10, 222125, time.UTC)
err := client.Set("time_key", tm, 0).Err()
Expect(err).NotTo(HaveOccurred())
s, err := client.Get("time_key").Result()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("2019-01-01T00:00:00Z"))
Expect(s).To(Equal("2019-01-01T09:45:10.000222125Z"))
tm2, err := client.Get("time_key").Time()
Expect(err).NotTo(HaveOccurred())