You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can't build current pandas with dev version of numpy. I get the following error:
In file included from pandas/src/tseries.c:258:0: pandas/src/skiplist.h:31:28: error: redefinition of ‘__npy_nanf' /usr/local/lib/python2.7/site-packages/numpy/core/include/numpy/npy_math.h:19:25: note: previous definition of ‘__npy_nanf’ was here
This seems odd as a previous commit removed
#include <numpy/npy_math.h>
Commenting the offending function in skiplist.h seems to work, but that can't be the correct solution.
The text was updated successfully, but these errors were encountered:
list_libraries is a frequently called operation that can get
quite slow with a high amount of libraries. I noticed 4-5s+
for 7-8k libraries. Also the number of libraries is fairly
constant, so not much point in refetching the entire list every
time.
This adds a new collection in mongo which acts as a global cache
for all queries. The meta_db can be used for more accounting and
metadata storage in future, and this collection can be used for
caching other stuff as well.
It's best effort as if you don't have permissions or the data
does not exist in the cache it will just use the list_libraries.
The idea is to not require admin for reads and not expect the user
to have write access to a collection on writes.
Can't build current pandas with dev version of numpy. I get the following error:
This seems odd as a previous commit removed
#include <numpy/npy_math.h>
Commenting the offending function in
skiplist.h
seems to work, but that can't be the correct solution.The text was updated successfully, but these errors were encountered: