Questions tagged [synonym]

Synonym is a word or phrase that means exactly or nearly the same as another word or phrase in the same language.

Synonym is a word or phrase that means exactly or nearly the same as another word or phrase in the same language.

For more information read the Wikipedia page.

508 questions
8
votes
1 answer

How can I find synonyms in estimated frequency order using JWNL(Wordnet Library)?

Does anyone know how I can take the synonyms of a word using JWNL (Java Wordnet Library) ordered by estimated frequency? I know this can be done somehow, because Wordnet's application can do it. (I don't know if it matters, but I am using Wordnet…
missrg
  • 585
  • 2
  • 8
  • 19
8
votes
2 answers

create synonym for table in a database hosted in a different server

In oracle, if the other database is within the same server, I did the following to create a synonym CREATE SYNONYM synonymName FOR databaseName.schema.table; What should I do to create a synonym for tables in a database hosted in a different server…
chemicalkt
  • 816
  • 5
  • 16
  • 33
8
votes
2 answers

Is there a way to dynamically update a synonym file without restarting Solr server?

As we know there is a synonym.txt file in conf directory, which I wanted to update whenever I found some new synonym words... So is there any way to update that file dynamically without restarting the Solr server and will my search result consider…
milind_db
  • 1,274
  • 5
  • 34
  • 56
7
votes
2 answers

Managing Oracle Synonyms

I was reading this article: Managing Oracle Synonyms Regarding the order of preference, when it come to resolving an object name to the actual object, it says: Local objects will always be accessed first. If a local object does not exist, the…
Will
  • 2,858
  • 6
  • 33
  • 50
7
votes
5 answers

Is the word "lexer" a synonym for the word "parser"?

The title is the question: Are the words "lexer" and "parser" synonyms, or are they different? It seems that Wikipedia uses the words interchangeably, but English is not my native language so I can't be sure.
Seth Carnegie
  • 73,875
  • 22
  • 181
  • 249
7
votes
1 answer

Counting unique elements when some are synonyms of each other

I am trying to count the number of unique drugs in this list. my_drugs=c('a', 'b', 'd', 'h', 'q') I have the following dictionary,which gives me drug synonyms, but it is not set up so that the definitions are only for unique drugs: dictionary <-…
7
votes
1 answer

WordNet integrated with ElasticSearch - How to add new synonyms

I work with ElasticSearch version 1.2.3 I've integrated WordNet 3.0 as a Synonym database for ElasticSearch Synonyms Analyzer. (Full WordNet install: configure, make, make install) I've added the following code to the ElasticSearch index settings…
raven99
  • 261
  • 3
  • 8
7
votes
6 answers

C# in operator-overloading

I just had an idea last nigth when writing an if-expression and sometimes the expression tend to be long when you have it like this: if(x == 1 || x == 2 || x == 33 || x == 4 || x == -5 || x == 61) { ... } x can be enums,strings,ints,chars you get…
Daniel Svensson
  • 169
  • 2
  • 5
7
votes
2 answers

How to create a synonym in mysql

I have a view in database B which I use in database A. I would like to create a synonym to this view. Because right now each time I have to write the query like this Select * from DBNAME.VIEWNAME rather I just want to be able to write SELECT * FROM…
Anthony
  • 33,838
  • 42
  • 169
  • 278
7
votes
3 answers

How to store and check synonym of string in Java

I'm making a program which can response to what user said, something like chatter bot. But I wonder if I can make it understand if two or more words have the same meaning. For example, I make it to answer, "yes" when user say "are you scared of the…
bronze45
  • 71
  • 2
  • 3
6
votes
1 answer

Boosting Lucene Terms When Building the Index

Is it possible to determine that specific terms are more important then other when creating the index (not when querying it) ? Consider for example a synonym filter: doc 1: "this is a nice car" doc 2: "this is a nice vehicle" I want to add the…
epeleg
  • 10,347
  • 17
  • 101
  • 151
6
votes
1 answer

Bypass "table or view does not exist" in package compilation

There are two schemas in a Oracle database. MYSCHEMA that is controlled by me. OTHERSCHEMA that is not controlled by me. I just know I can get result from select * from OTHERSCHEMA.OTHEROBJECT. However, OTHEROBJECT is a synonym. In my package, I…
Alex Yeung
  • 2,495
  • 7
  • 31
  • 48
6
votes
4 answers

How do I hide my Oracle table?

Here's the scenario (simplified example): I have an Oracle user/schema called ABC. ABC owns a table called TRN. Client side code connects to the database as ABC and selects from ABC.TRN. So far so good. However, I don't want the client code to…
VinceJS
  • 1,254
  • 3
  • 18
  • 38
6
votes
5 answers

Synonym finder algorithm

I think example will be much better than loooong description :) Let's assume we have an array of arrays: ("Server1", "Server_1", "Main Server", "192.168.0.3") ("Server_1", "VIP Server", "Main Server") ("Server_2", "192.168.0.4") ("192.168.0.3",…
DEgorov
  • 305
  • 3
  • 12
6
votes
1 answer

fetch synonym of a word

Is there any good api from where I can fetch synonym of a word(English Language). Requirement:-- User enters a word press fetch button I will display synonym of that word.
Mohit Jain
  • 43,139
  • 57
  • 169
  • 274
1 2
3
33 34