moved recent to memcache
diff --git a/patches/december_2012/move_recent_to_memcache.py b/patches/december_2012/move_recent_to_memcache.py
new file mode 100644
index 0000000..ee94121
--- /dev/null
+++ b/patches/december_2012/move_recent_to_memcache.py
@@ -0,0 +1,7 @@
+import webnotes, json
+
+def execute():
+ for p in webnotes.conn.sql("""select name, recent_documents from
+ tabProfile where ifnull(recent_documents,'')!=''"""):
+ if not '~~~' in p[1]:
+ webnotes.cache().set_value("recent:" + p[0], json.loads(p[1]))
\ No newline at end of file