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
# This is the main code blockcollection.content=b"1111"print(len(col_mgr.cache_save(collection, with_content=False)))
print(len(col_mgr.cache_save(collection)))
output:
2083
2083
The length of the output is the same, it should be that the with_content parameter does not take effect
# This is the main code block, this item has contentprint(len(item_mgr.cache_save(item, with_content=False)))
print(len(item_mgr.cache_save(item)))
output:
1857
1857
This has the same problem for item
The text was updated successfully, but these errors were encountered:
Code like the following:
output:
The length of the output is the same, it should be that the with_content parameter does not take effect
output:
This has the same problem for item
The text was updated successfully, but these errors were encountered: