Skip to content

Commit 0aca58f

Browse files
committed
Remove unused function apc_cache_find()
1 parent 89618de commit 0aca58f

File tree

3 files changed

+3
-31
lines changed

3 files changed

+3
-31
lines changed

TECHNOTES.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -233,9 +233,8 @@ form of a quick-start guide to start hacking on APCu.
233233
deletion occurs depends on runtime parameters, see INSTALL for runtime parameter
234234
configuration details.
235235

236-
apc_cache_find() simply hashes and returns the entry if it is there. If it is there
237-
but older than the mtime in the entry we are looking for, we delete the one that is
238-
there and return indicating we didn't find it.
236+
apc_cache_rlocked_find() simply hashes and returns the entry if it is there. If it is there
237+
but older than the mtime in the entry we are looking for, we return indicating we didn't find it.
239238

240239
API users are advised to use apc_cache_fetch over find for simplicity, this ensures
241240
correct operation, fetch sets up the call to find and takes care of copying and releasing

apc_cache.c

-20
Original file line numberDiff line numberDiff line change
@@ -784,26 +784,6 @@ PHP_APCU_API void apc_cache_default_expunge(apc_cache_t* cache, size_t size)
784784
}
785785
/* }}} */
786786

787-
/* {{{ apc_cache_find */
788-
PHP_APCU_API apc_cache_entry_t *apc_cache_find(apc_cache_t* cache, zend_string *key, time_t t)
789-
{
790-
apc_cache_entry_t *entry;
791-
792-
if (!cache) {
793-
return NULL;
794-
}
795-
796-
if (!apc_cache_rlock(cache)) {
797-
return NULL;
798-
}
799-
800-
entry = apc_cache_rlocked_find_incref(cache, key, t);
801-
apc_cache_runlock(cache);
802-
803-
return entry;
804-
}
805-
/* }}} */
806-
807787
/* {{{ apc_cache_fetch */
808788
PHP_APCU_API zend_bool apc_cache_fetch(apc_cache_t* cache, zend_string *key, time_t t, zval *dst)
809789
{

apc_cache.h

+1-8
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,6 @@ PHP_APCU_API zend_bool apc_cache_atomic_update_long(
167167
apc_cache_t *cache, zend_string *key, apc_cache_atomic_updater_t updater, void *data,
168168
zend_bool insert_if_not_found, zend_long ttl);
169169

170-
/*
171-
* apc_cache_find searches for a cache entry by its hashed identifier,
172-
* and returns a pointer to the entry if found, NULL otherwise.
173-
*
174-
*/
175-
PHP_APCU_API apc_cache_entry_t* apc_cache_find(apc_cache_t* cache, zend_string *key, time_t t);
176-
177170
/*
178171
* apc_cache_fetch fetches an entry from the cache directly into dst
179172
*
@@ -198,7 +191,7 @@ PHP_APCU_API zend_bool apc_cache_entry_fetch_zval(
198191

199192
/*
200193
* apc_cache_entry_release decrements the reference count associated with a cache
201-
* entry. Calling apc_cache_find automatically increments the reference count,
194+
* entry. Calling apc_cache_rlocked_find_incref automatically increments the reference count,
202195
* and this function must be called post-execution to return the count to its
203196
* original value. Failing to do so will prevent the entry from being
204197
* garbage-collected.

0 commit comments

Comments
 (0)