Opened 15 years ago
Closed 15 years ago
#66 closed defect (fixed)
memory-leak in make-nodes
Reported by: | lgiessmann | Owned by: | lgiessmann |
---|---|---|---|
Priority: | critical | Milestone: | miscellaneous 2010 |
Component: | json-interface | Version: | 0.1 |
Keywords: | Cc: |
Description
Change History (4)
comment:1 Changed 15 years ago by
Status: | new → accepted |
---|
comment:2 Changed 15 years ago by
comment:3 Changed 15 years ago by
(dotimes (i 1000000)
(elephant:get-instances-by-value 'd::TopicIdentificationC 'd::uri "goethe"))
--> memory that is not released after operation 29.0 MB
(dotimes (i 1000000)
(elephant:get-instance-by-value 'd::TopicIdentificationC 'd::uri "goethe"))
--> memory that is not released after operation 0.1 MB
(dotimes (i 1000000)
(elephant:get-instances-by-class 'd::TopicIdentificationC))
--> memory that is not released after operation 58.9 MB
comment:4 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | accepted → closed |
solved by updatinge elephant to the latest repo and compiling it directly in sbcl and not in slime -> so the first call of (asdf:operate 'asdf:load-op :elephant) did not fail
(xml-importer::setup-repository "unit_tests/poems.xtm" "data_base" :tm-id "http://isidorus/tmra2009" :xtm-id "tmra2009")
(elephant:open-store '(:BDB "data_base"))
(dotimes (i 1000000)
--> memory that is not released after operation 0.2 MB
(dotimes (i 1000000)
--> memory that is not released after operation 28.5 MB