I have written code to simulate the working of cache memory.
In this model, I try to realize the FIFO-algorithm which allows us to delete the last unused element (data, value, whatever).
I wrote a special function, which gives me a list o with numbers (these numbers are addresses in memory).
q=Queue.Queue(800)# Cache - memory. This is a queue which is more likely help me to simulate FIFO-algorithm
QW=[] # External memory
l=raw_input("Enter a desire operation:")#I enter my operation.
for i in range(len(o)):
time.sleep(0.4)
u = time.time()
k=o.pop(0) #o - is the list with numbers (these numbers are addresses in memory). Here I get each address through pop.
while l=='read': #If operation is "read" then i need to get my adress from q (cache-mem) or from QW (Is the external memory) and put it in q - (is the Cache-memory).
if k not in q:
if j in QW and k==j:
q.put(j)
else:
q.get(k)
while l=='record':#If operation is "record" then i need to write (append to QW) an address in QW or q, but only if the same address have existed already in QW or q.
if k not in q:
QW.append(k)
print QW
else:
q.put(k)
print q.get()
But I get the error:
TypeError: argument of type 'instance' is not iterable at line
if k not in q