Skip to content

Commit

Permalink
+ Version 2.6.0: Cleaned up internal API
Browse files Browse the repository at this point in the history
  • Loading branch information
floere committed Jul 4, 2011
1 parent 8533758 commit 1c3bd5f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions history.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
h2. Version 2.6.0

* hanke: (server) Breaking: @Indexes#find@ method has been removed.
* hanke: (server) Get Indexes/Categories using the @#[]@ method. E.g. @Indexes[:books]@ to get the :book index, and @Indexes[:books][:title]@ to get the :title category of the :books index.
* hanke: (server) @Indexes@, @Indexes[:some_index]@, and @Indexes[:some_index][:some_category]@ now all support methods @#index@ (just index: prepare data and cache data), @#reload@ (just reload the cached data into the server, no effect on Redis indexes), @#reindex@ (index and reload one category after another). E.g. @Indexes.index@ (Index all indexes, randomly), @Indexes[:some_index].reindex@ (Reindex that index), @Indexes[:some_index][:some_category].reload@ (Just reload that category).

h2. Version 2.5.2

* hanke: (server) Fixed: Redis indexing. Old values are now removed on reindexing.
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Picky
VERSION = '2.5.2'
VERSION = '2.6.0'
end

0 comments on commit 1c3bd5f

Please sign in to comment.